aof文件 redis

redis是如何加载aof

小新
189
2021-01-07 17:23:42
栏目: 云计算

redis是如何加载aof

redis加载aof文件的分析:

redis重启后自动加载,例如AOF持久化开启且存在AOF文件时,优先加载AOF文件。

AOF配置示例:

# 是否开启aof

appendonly yes

# 文件名称

appendfilename "appendonly.aof"

# 同步方式

appendfsync everysec

# aof重写期间是否同步

no-appendfsync-on-rewrite no

# 重写触发配置

auto-aof-rewrite-percentage 100

auto-aof-rewrite-min-size 64mb

# 加载aof时如果有错如何处理

aof-load-truncated yes

# 文件重写策略

aof-rewrite-incremental-fsync yes

0
看了该问题的人还看了