mirror of https://github.com/go-redis/redis.git
Merge e886a775bc
into e63669e170
This commit is contained in:
commit
be62884213
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue