Briefly describe the difference between Redis and MySQL

Briefly describe the difference between Redis and MySQL

We know that MySQL is a persistent storage, stored in the disk, and retrieval will involve certain IO. In order to solve this bottleneck, cache appeared, such as the most commonly used memcached (mc for short). First, the user accesses mc. If there is no hit, he accesses mysql. Then, like memory and hard disk, the data is copied to part of mc.

Both redis and MC are caches, and both run in memory, which greatly improves the access speed of high-data-volume web access. However, mc only provides simple data structures, such as string storage; redis provides a large number of data structures, such as string, list, set, hashset, sorted set, etc., which makes it much more convenient for users. After all, it encapsulates a layer of practical functions and achieves the same effect. Of course, use redis and gradually abandon mc.

The relationship between memory and hard disk is that the hard disk stores the main data for persistent storage, while the memory is the data that is currently running. The CPU accesses the memory instead of the disk, which greatly improves the running speed. Of course, this is based on the principle of localized access of the program.

Reasoning about redis+mysql, it is a mapping of memory+disk relationship. MySQL is placed on disk and redis is placed in memory. In this way, the web application only accesses redis each time, and only accesses Mysql if the data is not found.

However, the usage of redis+mysql and memory+disk is better to be different.

The former is an in-memory database, and the data is stored in memory, so of course it is fast.

The latter is a relational database with powerful functions but slow data access.

Like memcache, mongoDB, Redis, all belong to the No sql series.

They are not of the same type and their application scenarios are also different. It depends on your needs.

Summarize

The above is all about the brief description of the differences between Redis and MySQL in this article. Interested friends can refer to: Analysis of the execution order of sql and MySQL statements, several important MySQL variables, and a brief analysis of the differences between FIND_IN_SET() and IN in Mysql. If there are any deficiencies, please leave a message to correct them. I hope this helps you all.

You may also be interested in:
  • Docker + Nodejs + Kafka + Redis + MySQL to build a simple seckill environment
  • PHP's Laravel framework combined with MySQL and Redis database deployment
  • How to migrate a database from MySQL to Redis
  • CentOS installation PHP5.5+Redis+XDebug+Nginx+MySQL full record
  • How to connect Python to MySQL, MongoDB, Redis, memcache and other databases

<<:  Example of how to deploy Spring Boot using Docker

>>:  Use dockercompose to build springboot-mysql-nginx application

Recommend

Summary of frequently used commands for Linux file operations

0. New operation: mkdir abc #Create a new folder ...

Install MySQL in Ubuntu 18.04 (Graphical Tutorial)

Tip: The following operations are all performed u...

Implementation of built-in modules and custom modules in Node.js

1. Commonjs Commonjs is a custom module in nodejs...

HTML Code Writing Guide

Common Convention Tags Self-closing tags, no need...

Share 13 excellent web wireframe design and production tools

When you start working on a project, it’s importa...

Briefly understand the two common methods of creating files in Linux terminal

We all know that we can use the mkdir command to ...

Docker-compose quickly builds steps for Docker private warehouse

Create docker-compose.yml and fill in the followi...

Introduction to HTML page source code layout_Powernode Java Academy

Introduction to HTML page source code layout This...

MySQL stored procedure in, out and inout parameter examples and summary

Stored Procedures 1. Create a stored procedure an...

How to check if the firewall is turned off in Linux

1. Service method Check the firewall status: [roo...

A brief analysis of the use of zero copy technology in Linux

This article discusses several major zero-copy te...

Analyzing ab performance test results under Apache

I have always used Loadrunner to do performance t...

Implementing password box verification information based on JavaScript

This article example shares the specific code of ...