Redis的AOF持久化-Redis学习笔记四

1.append only file AOF持久化)

本质:把用户执行的每个“写”指令(添加、修改、删除)都备份到文件中,还原数据的时候就是执行具体指令而已。


开启AOF持久化(会清空redis内部的数据)

(同时可以修改备份文件的名字,默认是appendonly.aof)

# AOF and RDB persistence can be enabled at the same time without problems.
# If the AOF is enabled on startup Redis will load the AOF, that is the file
# with the better durability guarantees.
#
# Please check http://redis.io/topics/persistence for more information.

appendonly yes

配置文件被修改,需要删除旧进程,再根据新的配置文件启动新进程:


新进程启动好后会看到对应的aof持久化备份文件appendonly.aof


aof追加持久化的备份频率:

# More details please check the following article:
# http://antirez.com/post/redis-persistence-demystified.html
#
# If unsure, use "everysec".

# appendfsync always
appendfsync everysec
# appendfsync no

2. aof备份文件做优化处理

appendonly.aof文件内容做优化压缩处理:

(例如多个incr指令变为一个set指令)



bgrewriteaof  当日志文件过长时优化AOF日志文件存储



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值