flâneur — a map of the web's best reading

Redis persistence | Redis

redis.io · 1 words · saved by 1 readers

Persistence refers to the writing of data to durable storage, such as a solid-state disk (SSD). Redis provides a range of persistence options. These include: If you'd rather not think about the tradeoffs between these different persistence strategies, you may want to consider Redis Enterprise's persistence options, which can be pre-configured using a UI. To learn more about how to evaluate your Redis persistence strategy, read on. Redis < 7.0 The general indication you should use both persistence methods is if you want a degree of data safety comparable to what PostgreSQL can provide you. If you care a lot about your data, but still can live with a few minutes of data loss in case of disasters, you can simply use RDB alone. There are many users using AOF alone, but we discourage it since to have an RDB snapshot from time to time is a great idea for doing database backups, for faster restarts, and in the event of bugs in the AOF engine. The following sections will illustrate a few more

https://redis.io/docs/latest/operate/oss_and_stack/management/persistence/

Explore this link on the map →

related reading