How to namespace keys on redis to avoid name collisions?

こ雲淡風輕ζ 提交于 2021-01-21 08:46:22

问题


I want to use redis to store some of my own key-value pairs, however some of my modules already use it. The redis express session store for session data, as well as the redis adapter for socket io. So my question is simple, how can I create or designate a database/namespace to store my own keys without key collisions? I am using the node-redis driver.


回答1:


Solution 1: Store data of different modules in different Redis instances

The most strictly isolation is storing data of each module in an individual Redis instance, i.e. an individual Redis process.

Solution 2: Store data of different modules in different databases of a single Redis instance

A Redis instance can have multiple databases, and you can configure the number of databases in the config file. By default, there are 16 databases.

These databases are named with a zero-based numeric index. With the select command, you can use the ith database. After the selection, any subsequent commands will operate on the ith database.

So, if you assign an independent database for each module, you can avoid name collisions.

NOTE: this solution DOES NOT work with Redis Cluster. Redis Cluster only allows you to use the 0th database.

Solution 3: Create namespace with key prefix

If all of your data has to be stored in a single database, you can still implicitly create a namespace with key prefix. For each module, all data of this module should have the same key pattern: ModuleName:KeyName, i.e. each key of this module has the same prefix: ModuleName.

Since each module has a different name, there won't be any name collisions among these modules:

// Set keys for module1
SET module1:key1 value
SET module1:key2 value

// Set keys for module2
SET module2:key1 value
SET module2:key2 value

NOTE: this solution also works with Redis Cluster.



来源:https://stackoverflow.com/questions/39192469/how-to-namespace-keys-on-redis-to-avoid-name-collisions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!