From e886a775bc6e34a89efc4b0256d92e31fc7a37a9 Mon Sep 17 00:00:00 2001 From: "ted.y" Date: Mon, 30 Sep 2024 15:57:25 +0900 Subject: [PATCH] ADD CLUSTER MYID Command --- cluster_commands.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cluster_commands.go b/cluster_commands.go index 0caf0977..f07d2a49 100644 --- a/cluster_commands.go +++ b/cluster_commands.go @@ -3,6 +3,7 @@ package redis import "context" type ClusterCmdable interface { + ClusterMyID(ctx context.Context) *StringCmd ClusterMyShardID(ctx context.Context) *StringCmd ClusterSlots(ctx context.Context) *ClusterSlotsCmd ClusterShards(ctx context.Context) *ClusterShardsCmd @@ -29,6 +30,12 @@ type ClusterCmdable interface { ReadWrite(ctx context.Context) *StatusCmd } +func (c cmdable) ClusterMyID(ctx context.Context) *StringCmd { + cmd := NewStringCmd(ctx, "cluster", "myid") + _ = c(ctx, cmd) + return cmd +} + func (c cmdable) ClusterMyShardID(ctx context.Context) *StringCmd { cmd := NewStringCmd(ctx, "cluster", "myshardid") _ = c(ctx, cmd)