Introduction
Redis stores data as simple pairs of keys and values. This makes it very fast and easy to find information.
When you need to quickly save and get small pieces of data like user sessions.
When you want to count things like page views or clicks in real time.
When you need a simple cache to speed up your app by storing recent results.
When you want to store configuration settings that your app reads often.
When you need to share data between different parts of your system quickly.