Redis in an in-memory data store used in the Overloop applications.****
🏠 HOME
OUR STACK
OUR TOOLS
Compared to a traditional database, Redis stores all the data in the RAM of the server it is running on. Consequently, Redis, as a data store has the following features:
Knowing the possibilities and limitations of Redis, it is particularly good when used:
Redis, compared to other databases can be easily replicated to make clusters, which can scale over the size of the RAM of a single database, at the cost of a little configuration and latency overhead
In order to recover from the loss of data following an accidental shutdown of the machine, Redis instances are often checkpointed (persisted) in a different kind of storage (such as in a traditional database, …).
<aside> <img src="/icons/playback-previous_lightgray.svg" alt="/icons/playback-previous_lightgray.svg" width="40px" /> PostgreSQL
</aside>
<aside> <img src="/icons/playback-next_lightgray.svg" alt="/icons/playback-next_lightgray.svg" width="40px" /> Foreword
</aside>