Redis Persistence(redis持久化)
This page provides a technical description of Redis persistence, it is a suggested read for all Redis users. For a wider overview of Redis persistence and the durability guarantees it provides you may also want to read Redis persistence demystified . Redis Persistence Redis provides a different range of persistence options(redis提供了几种持久化方案可供选择): The RDB persistence performs point-in-time snapshots of your dataset at specified intervals.(RDB方式,即快照模式) The AOF persistence logs every write operation received by the server, that will be played again at server startup, reconstructing the original