我正在使用Redis Cluster,有些键有一个特殊的前缀{foo},因此redis将它们放在一个插槽中. 我这样做是因为我想针对这些密钥运行一些lua脚本(如果我作为单个实例登录主服务器,我可以这样做
我这样做是因为我想针对这些密钥运行一些lua脚本(如果我作为单个实例登录主服务器,我可以这样做).
在我的设置中我有3个主人,但不知道如何找到掌握我的钥匙{foo}的插槽的主人.*
你知道如何找到掌握特定键/槽的主人吗?
我仍然需要阅读整个文档,但已经找到了 this:There are 16384 hash slots in Redis Cluster, and to compute what is
the hash slot of a given key, we simply take the CRC16 of the key
modulo 16384.
已经有一个命令用于该操作:
http://redis.io/commands/cluster-keyslot
>CLUSTER KEYSLOT somekey 11058
并找到服务器中的哪些插槽:
http://redis.io/commands/cluster-slots