Redis persists data and works on key value stores with a great feature called Hashsets.
Should redis be used to store information like ‘customer, user, product, order’ or is this the job of a relational database?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your data requires relations and you don’t need to cache it for performance reasons then PostgreSQL will probably suite you more. Redis is mostly used for it’s speed capabilities and support for advanced (mostly key-value based) data structures, but RDBMS like Postgres are better to use for scenarios with relationships and ACID requirements.