5 Key Takeaways for Developing with Redis
Developing an application with Redis is a lot of fun, but as with any technology, there are a few points you you should keep in mind while designing a Redis-based application. You're probably already familiar with relational database development, but while many of the same practices apply, keep in mind that Redis is an in-memory database and it is (mostly) single-threaded.
Therefore, there are several peculiarities you should pay attention to when using Redis:
1. Keep Track of Your Keys
Databases store data, but any developer can lose track of some of the data you're putting into Redis. This is only natural, due to your application's requirements changing or to you changing the way you store the data. Perhaps you've neglected to EXPIRE some of the keys, or maybe a module of the application has been retired.
Read full article from 5 Key Takeaways for Developing with Redis
No comments:
Post a Comment