✅ The best database for fast add/delete operations
Hello. I'm building a SignalR application that will scale horizontally. I need external storage where I can quickly add and remove temporary entries. For example, store information about which chat the user is currently in (key-value structure). Which solution should be chosen for this? It is important for me to quickly add / remove for not very large amounts of data.
4 Replies
if it's not large then have you considered just a structure in memory?
This structure can be used by multiple servers at the same time. So in the memory structure is not suitable.
Stuff like redis is used for this, a distributed cache
Thanks!