DEV Community

Discussion on: Redis 101: Foundation and Core Concepts

Collapse
 
swarupkm profile image
Swarup Kumar Mahapatra

Most important point about Redis I feel, redis should not be treated as a persistance layer.
Once that mindset is achieved, the use redis is a charm.
The application should not crash/misbehave if redis data gets reset or wiped out.

One good use case of redis is to store "Feature Switches" or "Configurable Data".

Collapse
 
muhammadhasham profile image
Muhammad Hasham

Thank you for the feedback. It is indeed a good use-case of Redis.