Cache vs Session Store 🌱
Cache is stored at an application level, not a user level. So, content in the cache is shared between users.
In session storage, the app stores all session-related data from a specific user like their profile information, messages, personalized data and themes, recommendations, targeted promotions and discounts, etc. So, content in session storage must be separated user to user.
More info is here: https://redislabs.com/blog/cache-vs-session-store/
Notes mentioning this note
Cache vs Session Store
Cache is stored at an application level, not a user level. So, content in the cache is shared between users....
What is Redis
Redis stands for Remote Dictionary Server and is a key-value database ([[What Database do I use]]). All Redis data resides...