当前位置:网站首页>Redis的两种持久化机制RDB和AOF的原理和优缺点
Redis的两种持久化机制RDB和AOF的原理和优缺点
2022-07-06 09:20:00 【快醒醒鸭今天你编程了吗?】
下面是Redis里面两种持久化机制的原理的优缺点也挺重要的:
Redis本身是基于Key-Value结构的内存数据库,Redis为了避免Redis故障导致数据丢失的一个问题提供了RDB和AOF两种持久化的机制
- RDB是通过快照的方式实现持久化机制的,也就是说会根据快照的一个触发条件把内存里面的数据快照写入到磁盘里面以二进制的压缩文件的方式进行存储RDB快照方式有很多如下:
- 执行bgsave命令触发异步快照,执行save命令触发同步快照,两者的区别:同步快照会阻塞客户端的执行指令
- 根据redis.conf文件里面的配置,自动触发bgsave
- 主从复制的时候会触发
- AOF持久化是一种近乎实时的方式,把Redis Server执行的事务命令进行追加存储,就是客户在执行一个数据变更的操作,Redis就会把这样一个命令追加到aof的缓冲区里面,然后再把缓冲区里面的数据写入到磁盘的aof文件里面,最终什么时候 真正把数据持久化到磁盘的aof文件里面,是根据磁盘的刷盘策略来决定的,另外AOF这种指令追加的一个方式会造成AOOF文件过大带来明显的IO性能问题,所以Redis针对这样一个情况提供了AOF重写机制,当AOF文件大小达到某个值的时候就会把这个文件里面的相同的指令进行压缩
RDB和AOF的优缺点:
- RDB是每隔一段时间触发持久化,因此数据安全性低,AOF可以做到实时持久化,数据安全性较高
- RDB文件默认采用压缩的方式持久化,AOF存储的是执行指令,所以RDB在数据恢复的时候性能比AOF要好
优缺点还要看当前具体的应用场景!!!!
边栏推荐
- String class
- 【九阳神功】2020复旦大学应用统计真题+解析
- C语言入门指南
- JS interview questions (I)
- 2.C语言矩阵乘法
- Conceptual model design of the 2022 database of tyut Taiyuan University of Technology
- MySQL limit x, -1 doesn't work, -1 does not work, and an error is reported
- 1.初识C语言(1)
- Database operation of tyut Taiyuan University of technology 2022 database
- 魏牌:产品叫好声一片,但为何销量还是受挫
猜你喜欢
Questions and answers of "signal and system" in the first semester of the 22nd academic year of Xi'an University of Electronic Science and technology
6.函数的递归
TYUT太原理工大学2022数据库大题之E-R图转关系模式
阿里云微服务(一)服务注册中心Nacos以及REST Template和Feign Client
Cloud native trend in 2022
2.C语言矩阵乘法
5. Function recursion exercise
C language to achieve mine sweeping game (full version)
5. Download and use of MSDN
凡人修仙学指针-2
随机推荐
Iterable、Collection、List 的常见方法签名以及含义
[while your roommate plays games, let's see a problem]
There is always one of the eight computer operations that you can't learn programming
View UI Plus 发布 1.3.1 版本,增强 TypeScript 使用体验
[中国近代史] 第五章测验
Questions and answers of "signal and system" in the first semester of the 22nd academic year of Xi'an University of Electronic Science and technology
1. C language matrix addition and subtraction method
Summary of multiple choice questions in the 2022 database of tyut Taiyuan University of Technology
Branch and loop statements
Introduction pointer notes
View UI plus released version 1.3.1 to enhance the experience of typescript
学编程的八大电脑操作,总有一款你不会
Redis介绍与使用
Floating point comparison, CMP, tabulation ideas
8.C语言——位操作符与位移操作符
(super detailed II) detailed visualization of onenet data, how to plot with intercepted data flow
165. Compare version number - string
最新坦克大战2022-全程开发笔记-2
8. C language - bit operator and displacement operator
凡人修仙学指针-2