Redis Database – Part 08 – Scalability and High Availability

In the previous blog I discussed transactions. In this blog I want to highlight the scalability and high availability features available in Redis. RDBMS’s are designed to run on big boxes. Scaling is done virtually by throwing more hardware at the server. This is in complete contract to NoSQL databases which are designed to be … More Redis Database – Part 08 – Scalability and High Availability

Redis Database – Part 05 – Handling NULLs and Data Denormalization

In the last blog I covered how we create our first data model and some queries. The code can be found on Github here. In this blog I want to discuss handling NULL input data and data denormalization. NULL Data NOSQL databases do NOT have the concept of NULL. Since there is no schema enforcement, … More Redis Database – Part 05 – Handling NULLs and Data Denormalization