search
HomeDatabaseRedisHow does redis persist data?
How does redis persist data?Nov 21, 2019 am 10:03 AM
redis

Redis is called an in-memory database because it stores all its data in memory, so Redis has strong speed performance. However, precisely because the data is stored in memory, when Redis is restarted, all Data stored in memory will be lost. In order to make data persistent, Redis provides two methods: RDB method and AOF method.

How does redis persist data?

1. RDB method

RDB method persistence is completed through snapshotting. Under certain conditions, Redis will automatically generate a copy of all the data in the memory and store it on the hard disk. This process is called a "snapshot". "Snapshot" is similar to taking a photo. The moment you press the shutter, the photo you freeze is called a "snapshot".

# Redis There are 4 cases of snapshots on the data: (Recommended Learning: Redis Video Tutorial )

## automatically;


When the user executes the SAVE or BGSAVE command;

executes the FLUSHALL command;

when executing replication.

2. AOF method

Persistence is achieved through RDB. Once Redis exits abnormally, all data changed after the last snapshot will be lost. In order to reduce the risk of data loss caused by process termination, the AOF method can be used to achieve data persistence.


AOF persistence records every write and delete operation processed by the server in the form of a log. Query operations will not be recorded, but will be recorded in the form of text. Details can be seen in the file. operation records.

Her appearance is to make up for the shortcomings of RDB (data inconsistency), so it uses the form of a log to record each write operation and append it to the file. When Redis is restarted, the write instructions will be executed from front to back based on the contents of the log file to complete the data recovery work.

By default, Redis does not enable AOF persistence. It can be started through the appendonly parameter: appendonly yes


After AOF persistence is enabled, each execution will change Redis. Data command, Redis will write the command to an AOF format file on the hard disk, that is, the .aof format file stores some redis instructions.

It should be noted at this time that when data in Redis is frequently manipulated, the memory occupied by the AOF format file will become larger and larger, and there will be many useless instructions, such as continuously executing set foo 1, set foo 2, set foo 3.

Then the first two instructions are meaningless. Redis is very powerful. It will automatically delete meaningless instructions. That is, whenever a certain condition is reached, Redis will automatically rewrite the AOF file, and this condition Can be set in the configuration file. The rewriting process is only related to memory data and has nothing to do with the previous AOF file. This is similar to RDB.


When synchronizing hard disk data, due to the cache mechanism of the operating system, the data is not actually written to the hard disk, but enters the system's hard disk cache. By default, the system will perform a synchronization operation every 30 seconds. During these 30 seconds, if the system exits abnormally, the data in the hard disk memory will be lost.

Redis allows RDB and AOF modes to be turned on at the same time, which not only ensures data security, but also makes backup operations very easy. AOF can effectively reduce the possibility of data loss, and RDB can make data backup easy to achieve.

The above is the detailed content of How does redis persist data?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
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实现排行榜及相同积分按时间排序功能的实现实例详解Redis实现排行榜及相同积分按时间排序功能的实现Aug 26, 2022 pm 02:09 PM

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

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

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

redis error什么意思redis error什么意思Jun 17, 2019 am 11:07 AM

redis error就是redis数据库和其组合使用的部件出现错误,这个出现的错误有很多种,例如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

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment