I need to store 2 key-value data for 2 different programs . These data may have the same key but different value. If I don't separate them these will crash my program. So how can I store both data on 1 redis and how to configure it using nodeJS.
Asked
Active
Viewed 213 times
0
-
Although best practice is to use multiple instances, Redis also has a [database number](https://stackoverflow.com/q/13386053/2395796) that can be used for namespacing. – Kevin Christopher Henry Jul 02 '21 at 12:55
-
Does this answer your question? [How does redis separates the multiple user instance running on same server?](https://stackoverflow.com/questions/68161719/how-does-redis-separates-the-multiple-user-instance-running-on-same-server) – sazzad Jul 02 '21 at 13:29