Redis caching
November 6, 2019•306 words
Redis:
In memory data structure store which is memory backed, provides fast read/write, persistance, replication, automatic failover, replication.
Redis is not a cache as such, as it suppors many different complex data types, but can be configured to be a cache based on some specific options.
AWS supports replication and automatic failover:
#### Replication
Replication in AWS can be configured in 2 different ways, you can have cluster mode on or cluster mode off. With custer mode off you...
Read post