summaryrefslogtreecommitdiff
path: root/redis/commands/cluster.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/commands/cluster.py')
-rw-r--r--redis/commands/cluster.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/redis/commands/cluster.py b/redis/commands/cluster.py
index a23a94a..cd93a85 100644
--- a/redis/commands/cluster.py
+++ b/redis/commands/cluster.py
@@ -45,7 +45,6 @@ from .redismodules import RedisModuleCommands
if TYPE_CHECKING:
from redis.asyncio.cluster import TargetNodesT
-
# Not complete, but covers the major ones
# https://redis.io/commands
READ_COMMANDS = frozenset(
@@ -634,6 +633,14 @@ class ClusterManagementCommands(ManagementCommands):
"""
return self.execute_command("CLUSTER SHARDS", target_nodes=target_nodes)
+ def cluster_myshardid(self, target_nodes=None):
+ """
+ Returns the shard ID of the node.
+
+ For more information see https://redis.io/commands/cluster-myshardid/
+ """
+ return self.execute_command("CLUSTER MYSHARDID", target_nodes=target_nodes)
+
def cluster_links(self, target_node: "TargetNodesT") -> ResponseT:
"""
Each node in a Redis Cluster maintains a pair of long-lived TCP link with each