mirror of
https://github.com/redis/go-redis.git
synced 2025-06-12 14:21:52 +03:00
Fix Del command case.
This commit is contained in:
@ -82,7 +82,7 @@ func (c *statefulCmdable) Select(index int) *StatusCmd {
|
||||
|
||||
func (c *cmdable) Del(keys ...string) *IntCmd {
|
||||
args := make([]interface{}, 1+len(keys))
|
||||
args[0] = "DEL"
|
||||
args[0] = "del"
|
||||
for i, key := range keys {
|
||||
args[1+i] = key
|
||||
}
|
||||
@ -550,7 +550,7 @@ func (c *cmdable) Set(key string, value interface{}, expiration time.Duration) *
|
||||
|
||||
func (c *cmdable) SetBit(key string, offset int64, value int) *IntCmd {
|
||||
cmd := NewIntCmd(
|
||||
"SETBIT",
|
||||
"setbit",
|
||||
key,
|
||||
offset,
|
||||
value,
|
||||
|
Reference in New Issue
Block a user