1
0
mirror of https://github.com/redis/go-redis.git synced 2025-08-07 12:42:55 +03:00

Reverting changes to command.go, refactoring cluster client's calls to cmdSlot

This commit is contained in:
Jake Gregg
2019-02-01 09:12:20 -08:00
parent f3804cd0b7
commit 67dcdea95a
2 changed files with 3 additions and 11 deletions

View File

@@ -767,11 +767,8 @@ func cmdSlot(cmd Cmder, pos int) int {
if pos == 0 {
return hashtag.RandomSlot()
}
val, ok := cmd.Args()[pos].(int)
if ok {
return val
}
return hashtag.Slot(cmd.stringArg(pos))
firstKey := cmd.stringArg(pos)
return hashtag.Slot(firstKey)
}
func (c *ClusterClient) cmdSlot(cmd Cmder) int {
@@ -791,7 +788,7 @@ func (c *ClusterClient) cmdSlotAndNode(cmd Cmder) (int, *clusterNode, error) {
}
cmdInfo := c.cmdInfo(cmd.Name())
slot := cmdSlot(cmd, cmdFirstKeyPos(cmd, cmdInfo))
slot := c.cmdSlot(cmd)
if c.opt.ReadOnly && cmdInfo != nil && cmdInfo.ReadOnly {
if c.opt.RouteByLatency {