1 回答

TA貢獻(xiàn)1824條經(jīng)驗 獲得超6個贊
1、 快照的方式持久化到磁盤
自動持久化規(guī)則配置
save 900 1
save 300 10
save 60 10000
上面的配置規(guī)則意思如下:
# In the example below the behaviour will be to save:
# after 900 sec (15 min) if at least 1 key changed
# after 300 sec (5 min) if at least 10 keys changed
# after 60 sec if at least 10000 keys changed
redis也可以關(guān)閉自動持久化,注釋掉這些save配置,或者save “”
如果后臺保存到磁盤發(fā)生錯誤,將停止寫操作.
stop-writes-on-bgsave-error yes
使用LZF壓縮rdb文件,這會耗CPU, 但是可以減少磁盤占用.
rdbcompression yes
保存rdb和加載rdb文件的時候檢驗,可以防止錯誤,但是要付出約10%的性能,可以關(guān)閉他,提高性能。
rdbchecksum yes
導(dǎo)出的rdb文件名
dbfilename dump.rdb
設(shè)置工作目錄, rdb文件會寫到該目錄, append only file也會存儲在該目錄下.
dir ./
- 1 回答
- 0 關(guān)注
- 940 瀏覽
添加回答
舉報