把官方文档好好看看吧,没多少的。
1. save 60 1000 指的是,如果60s内有超过1000个写请求,则redis会调用一次fsync保证数据写回磁盘。
For example, this configuration will make Redis automatically dump the dataset to disk every 60 seconds if at least 1000 keys changed:
save 60 1000
2. 取决于你使用AOF还是RDB模式。AOF模式(实际上就是所有请求的log)会自动重建(但是很慢,因为要从头开始),而RDB模式则可能会出现文件损坏(所以官方推荐定时备份)。