redis memory and cpu spikes

前端 未结 3 1507
说谎
说谎 2021-01-14 09:07

We use redis for some data in our app, and it\'s totally great. I noticed however occasional cpu and memory spikes on the redis-server process.

3条回答
  •  有刺的猬
    2021-01-14 09:40

    The docs says: "the Redis AOF works incrementally updating an existing state, like MySQL or MongoDB does, while the RDB snapshotting creates everything from scratch again and again, that is conceptually more robust."

    Source: http://redis.io/topics/persistence (in AOF disadvantages)

提交回复
热议问题