redisデータのクリーンアップ
1303 ワード
データのクリーンアップを行うときは、メモリのデータをクリーンアップし、同時にローカルハードディスク(HDD)にブラシをかけないようにします.だからsaveをリフレッシュする過程を殺す.
ローカルrdbを空にする
次にredisデータをクリーンアップした後、手動でbgsaveします.
ローカルrdbを空にする
# 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
#
# Note: you can disable saving completely by commenting out all "save" lines.
#
# It is also possible to remove all the previously configured save
# points by adding a save directive with a single empty string argument
# like in the following example:
#
# save ""
#save 900 1
#save 300 10
#save 60 10000
次にredisデータをクリーンアップした後、手動でbgsaveします.