search
HomeDatabaseRedisExample analysis of Redis caching problem

1. Application of Redis cache

In our actual business scenarios, Redis is generally used in conjunction with other databases to reduce the pressure on back-end databases, such as relational databases. Used with database MySQL.

Redis will cache frequently queried data in MySQL, such as hotspot data, so that when users come to access, they do not need to go to MySQL. Instead of querying, the cached data in Redis is directly obtained, thereby reducing the reading pressure on the back-end database.

If the data queried by the user is not available in Redis, the user's query request will be transferred to the MySQL database. When MySQL returns the data to the client, the data will be cached in Redis at the same time., so that when the user reads again, the data can be obtained directly from Redis. The flow chart is as follows:

Example analysis of Redis caching problem

When using Redis as a cache database, we will inevitably face three common caching problems

  • Cache Penetration

  • Cache Penetration

  • Cache Avalanche

2. Cache Penetration

2.1 Introduction

Cache penetration means that when the user queries a certain data, the data does not exist in Redis, that is, the cache does not hit. At this time, the query request will be transferred to the persistence layer database MySQL, and it is found that the data does not exist in MySQL either. , MySQL can only return an empty object, indicating that the query failed. If there are many such requests, or users use such requests to conduct malicious attacks, it will put great pressure on the MySQL database and even collapse. This phenomenon is called cache penetration.

Example analysis of Redis caching problem

2.2 Solution

Cache empty objects

When MySQL When an empty object is returned, Redis caches the object and sets an expiration time for it. When the user initiates the same request again, an empty object will be obtained from the cache. The user's request is blocked in the cache layer, thus protecting the back-end database. However, this approach There are also some problems. Although the request cannot enter MSQL, this strategy will occupy Redis cache space.

Example analysis of Redis caching problem

Bloom filter

First store all keys of hotspot data that users may access In the Bloom filter (also called cache preheating) , when a user makes a request, it will first go through the Bloom filter. The Bloom filter will determine whether the requested key exists . If If it does not exist, then the request will be rejected directly, otherwise the query will continue to be executed, first go to the cache to query, if the cache does not exist, then go to the database to query. Compared with the first method, using the Bloom filter method is more efficient and practical. The process diagram is as follows:

Example analysis of Redis caching problem

Cache preheating is the process of loading relevant data into the Redis cache system in advance before the system starts. . This avoids loading data when the user requests it.

2.3 Comparison of solutions

Both solutions can solve the problem of cache penetration, but their usage scenarios are different:

Cache empty objects: suitable for scenarios where the number of keys for empty data is limited and the probability of repeated key requests is high.


Bloom filter: suitable for scenarios where the keys of empty data are different and the probability of repeated key requests is low.

3. Cache breakdown

3.1 Introduction

Cache breakdown means that the data queried by the user does not exist in the cache , but it exists in the back-end database. The reason for this phenomenon is generally caused by the expiration of the key in the cache. For example, a hot data key receives a large number of concurrent accesses all the time. If the key suddenly fails at a certain moment, a large number of concurrent requests will enter the back-end database, causing its pressure to increase instantly. This phenomenon is called cache breakdown.

3.2 Solution

Change the expiration time

Set hotspot data to never expire.

Distributed lock

Adopt the distributed lock method to redesign the use of cache. The process is as follows:

  • Locking: When we query data through key, we first query the cache. If not, we lock it through distributed lock. The first process to obtain the lock Enter the back-end database query and buffer the query results to Redis.

  • Unlocking: When other processes find that the lock is occupied by a certain process, they enter the waiting state. After unlocking, other processes access the cached key in turn. .

Example analysis of Redis caching problem

##3.3 Comparison of solutions

Never expires: This solution does not set the real As for the expiration time, there are actually no series of hazards caused by hot keys, but there will be data inconsistencies, and the code complexity will increase.

Mutex lock: This solution is relatively simple, but there are certain hidden dangers. If there is a problem in the cache building process or it takes a long time, there may be deadlock and thread pool blocking. Risky, but this method can better reduce the back-end storage load and achieve better consistency.

4. Cache avalanche

4.1 Introduction

Cache avalanche means that a large number of keys in the cache expire at the same time, and at this time the data The number of visits is very large, which leads to a sudden increase in pressure on the back-end database and may even cause it to crash. This phenomenon is called a cache avalanche. It is different from cache breakdown. Cache breakdown occurs when a certain hot key suddenly expires when the amount of concurrency is particularly large, while cache avalanche occurs when a large number of keys expire at the same time, so they are not of the same order of magnitude at all.

Example analysis of Redis caching problem

4.2 Solution

Handling expiration

In order to reduce cache breakdown and avalanche problems caused by a large number of keys expiring at the same time, a strategy of never expiring hotspot data can be adopted, which is similar to cache avalanche. In addition, in order to prevent keys from expiring at the same time, you can set a random expiration time for them.

redis high availability

One Redis may hang due to an avalanche, so you can add a few more Redis, build a cluster, if one hangs up, the others can continue to work.

The above is the detailed content of Example analysis of Redis caching problem. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
es和redis区别es和redis区别Jul 06, 2019 pm 01:45 PM

Redis是现在最热门的key-value数据库,Redis的最大特点是key-value存储所带来的简单和高性能;相较于MongoDB和Redis,晚一年发布的ES可能知名度要低一些,ES的特点是搜索,ES是围绕搜索设计的。

一起来聊聊Redis有什么优势和特点一起来聊聊Redis有什么优势和特点May 16, 2022 pm 06:04 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于redis的一些优势和特点,Redis 是一个开源的使用ANSI C语言编写、遵守 BSD 协议、支持网络、可基于内存、分布式存储数据库,下面一起来看一下,希望对大家有帮助。

实例详解Redis Cluster集群收缩主从节点实例详解Redis Cluster集群收缩主从节点Apr 21, 2022 pm 06:23 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis Cluster集群收缩主从节点的相关问题,包括了Cluster集群收缩概念、将6390主节点从集群中收缩、验证数据迁移过程是否导致数据异常等,希望对大家有帮助。

详细解析Redis中命令的原子性详细解析Redis中命令的原子性Jun 01, 2022 am 11:58 AM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于原子操作中命令原子性的相关问题,包括了处理并发的方案、编程模型、多IO线程以及单命令的相关内容,下面一起看一下,希望对大家有帮助。

Redis实现排行榜及相同积分按时间排序功能的实现Redis实现排行榜及相同积分按时间排序功能的实现Aug 22, 2022 pm 05:51 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,希望对大家有帮助。

一文搞懂redis的bitmap一文搞懂redis的bitmapApr 27, 2022 pm 07:48 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了bitmap问题,Redis 为我们提供了位图这一数据结构,位图数据结构其实并不是一个全新的玩意,我们可以简单的认为就是个数组,只是里面的内容只能为0或1而已,希望对大家有帮助。

实例详解Redis实现排行榜及相同积分按时间排序功能的实现实例详解Redis实现排行榜及相同积分按时间排序功能的实现Aug 26, 2022 pm 02:09 PM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了Redis实现排行榜及相同积分按时间排序,本文通过实例代码给大家介绍的非常详细,下面一起来看一下,希望对大家有帮助。

一起聊聊Redis实现秒杀的问题一起聊聊Redis实现秒杀的问题May 27, 2022 am 11:40 AM

本篇文章给大家带来了关于redis的相关知识,其中主要介绍了关于实现秒杀的相关内容,包括了秒杀逻辑、存在的链接超时、超卖和库存遗留的问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.