redis/commands.go

1380 lines
32 KiB
Go
Raw Normal View History

2012-07-25 17:00:50 +04:00
package redis
import (
2014-11-13 15:26:14 +03:00
"io"
2012-07-25 17:00:50 +04:00
"strconv"
2014-05-11 11:42:40 +04:00
"time"
2012-07-25 17:00:50 +04:00
)
2012-08-17 22:36:48 +04:00
func formatFloat(f float64) string {
2013-03-05 13:27:22 +04:00
return strconv.FormatFloat(f, 'f', -1, 64)
2012-07-27 18:21:50 +04:00
}
func formatInt(i int64) string {
return strconv.FormatInt(i, 10)
}
2014-05-11 11:42:40 +04:00
func readTimeout(sec int64) time.Duration {
if sec == 0 {
return 0
}
return time.Duration(sec+1) * time.Second
}
2015-01-24 15:12:48 +03:00
type commandable struct {
process func(cmd Cmder)
}
func (c *commandable) Process(cmd Cmder) {
c.process(cmd)
}
func usePrecise(dur time.Duration) bool {
return dur < time.Second || dur%time.Second != 0
}
func formatMs(dur time.Duration) string {
return strconv.FormatInt(int64(dur/time.Millisecond), 10)
}
func formatSec(dur time.Duration) string {
return strconv.FormatInt(int64(dur/time.Second), 10)
}
2012-07-27 18:21:50 +04:00
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) Auth(password string) *StatusCmd {
cmd := newKeylessStatusCmd("AUTH", password)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Echo(message string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("ECHO", message)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Ping() *StatusCmd {
cmd := newKeylessStatusCmd("PING")
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Quit() *StatusCmd {
2012-08-25 16:40:49 +04:00
panic("not implemented")
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Select(index int64) *StatusCmd {
cmd := newKeylessStatusCmd("SELECT", strconv.FormatInt(index, 10))
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) Del(keys ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"DEL"}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Dump(key string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("DUMP", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Exists(key string) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("EXISTS", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
func (c *commandable) Expire(key string, expiration time.Duration) *BoolCmd {
cmd := NewBoolCmd("EXPIRE", key, formatSec(expiration))
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ExpireAt(key string, tm time.Time) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("EXPIREAT", key, strconv.FormatInt(tm.Unix(), 10))
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Keys(pattern string) *StringSliceCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd("KEYS", pattern)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Migrate(host, port, key string, db, timeout int64) *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd(
2012-07-26 19:16:17 +04:00
"MIGRATE",
host,
2012-08-17 22:36:48 +04:00
port,
2012-07-26 19:16:17 +04:00
key,
2012-08-17 22:36:48 +04:00
strconv.FormatInt(db, 10),
2012-07-26 19:16:17 +04:00
strconv.FormatInt(timeout, 10),
)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 3
2014-06-25 11:40:56 +04:00
cmd.setReadTimeout(readTimeout(timeout))
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Move(key string, db int64) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("MOVE", key, strconv.FormatInt(db, 10))
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ObjectRefCount(keys ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"OBJECT", "REFCOUNT"}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 2
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ObjectEncoding(keys ...string) *StringCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"OBJECT", "ENCODING"}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd(args...)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 2
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ObjectIdleTime(keys ...string) *DurationCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"OBJECT", "IDLETIME"}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewDurationCmd(time.Second, args...)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 2
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Persist(key string) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("PERSIST", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
func (c *commandable) PExpire(key string, expiration time.Duration) *BoolCmd {
cmd := NewBoolCmd("PEXPIRE", key, formatMs(expiration))
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) PExpireAt(key string, tm time.Time) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd(
2014-05-11 11:42:40 +04:00
"PEXPIREAT",
key,
strconv.FormatInt(tm.UnixNano()/int64(time.Millisecond), 10),
)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) PTTL(key string) *DurationCmd {
2014-06-25 11:40:56 +04:00
cmd := NewDurationCmd(time.Millisecond, "PTTL", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) RandomKey() *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("RANDOMKEY")
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Rename(key, newkey string) *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd("RENAME", key, newkey)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) RenameNX(key, newkey string) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("RENAMENX", key, newkey)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Restore(key string, ttl int64, value string) *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd(
2012-07-26 19:16:17 +04:00
"RESTORE",
2012-08-17 22:36:48 +04:00
key,
2012-07-26 19:16:17 +04:00
strconv.FormatInt(ttl, 10),
value,
)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2012-08-17 22:36:48 +04:00
type Sort struct {
By string
Offset, Count float64
Get []string
Order string
IsAlpha bool
Store string
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Sort(key string, sort Sort) *StringSliceCmd {
2012-08-17 22:36:48 +04:00
args := []string{"SORT", key}
if sort.By != "" {
args = append(args, "BY", sort.By)
2012-08-17 22:36:48 +04:00
}
if sort.Offset != 0 || sort.Count != 0 {
args = append(args, "LIMIT", formatFloat(sort.Offset), formatFloat(sort.Count))
}
for _, get := range sort.Get {
args = append(args, "GET", get)
}
if sort.Order != "" {
args = append(args, sort.Order)
}
if sort.IsAlpha {
args = append(args, "ALPHA")
}
if sort.Store != "" {
args = append(args, "STORE", sort.Store)
}
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) TTL(key string) *DurationCmd {
2014-06-25 11:40:56 +04:00
cmd := NewDurationCmd(time.Second, "TTL", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Type(key string) *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd("TYPE", key)
c.Process(cmd)
return cmd
2014-05-11 11:42:40 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Scan(cursor int64, match string, count int64) *ScanCmd {
2014-05-11 11:42:40 +04:00
args := []string{"SCAN", strconv.FormatInt(cursor, 10)}
if match != "" {
args = append(args, "MATCH", match)
}
if count > 0 {
args = append(args, "COUNT", strconv.FormatInt(count, 10))
}
2014-06-25 11:40:56 +04:00
cmd := NewScanCmd(args...)
c.Process(cmd)
return cmd
2014-05-11 11:42:40 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SScan(key string, cursor int64, match string, count int64) *ScanCmd {
2014-05-11 11:42:40 +04:00
args := []string{"SSCAN", key, strconv.FormatInt(cursor, 10)}
if match != "" {
args = append(args, "MATCH", match)
}
if count > 0 {
args = append(args, "COUNT", strconv.FormatInt(count, 10))
}
2014-06-25 11:40:56 +04:00
cmd := NewScanCmd(args...)
c.Process(cmd)
return cmd
2014-05-11 11:42:40 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HScan(key string, cursor int64, match string, count int64) *ScanCmd {
2014-05-11 11:42:40 +04:00
args := []string{"HSCAN", key, strconv.FormatInt(cursor, 10)}
if match != "" {
args = append(args, "MATCH", match)
}
if count > 0 {
args = append(args, "COUNT", strconv.FormatInt(count, 10))
}
2014-06-25 11:40:56 +04:00
cmd := NewScanCmd(args...)
c.Process(cmd)
return cmd
2014-05-11 11:42:40 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZScan(key string, cursor int64, match string, count int64) *ScanCmd {
2014-05-11 11:42:40 +04:00
args := []string{"ZSCAN", key, strconv.FormatInt(cursor, 10)}
if match != "" {
args = append(args, "MATCH", match)
}
if count > 0 {
args = append(args, "COUNT", strconv.FormatInt(count, 10))
}
2014-06-25 11:40:56 +04:00
cmd := NewScanCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) Append(key, value string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("APPEND", key, value)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2012-08-19 16:57:58 +04:00
type BitCount struct {
Start, End int64
}
2015-01-24 15:12:48 +03:00
func (c *commandable) BitCount(key string, bitCount *BitCount) *IntCmd {
2012-08-19 16:57:58 +04:00
args := []string{"BITCOUNT", key}
if bitCount != nil {
args = append(
args,
strconv.FormatInt(bitCount.Start, 10),
strconv.FormatInt(bitCount.End, 10),
)
}
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-08-19 16:57:58 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) bitOp(op, destKey string, keys ...string) *IntCmd {
2012-08-19 16:57:58 +04:00
args := []string{"BITOP", op, destKey}
args = append(args, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-08-19 16:57:58 +04:00
}
2012-07-26 19:16:17 +04:00
2015-01-24 15:12:48 +03:00
func (c *commandable) BitOpAnd(destKey string, keys ...string) *IntCmd {
2012-08-19 16:57:58 +04:00
return c.bitOp("AND", destKey, keys...)
}
2015-01-24 15:12:48 +03:00
func (c *commandable) BitOpOr(destKey string, keys ...string) *IntCmd {
2012-08-19 16:57:58 +04:00
return c.bitOp("OR", destKey, keys...)
}
2015-01-24 15:12:48 +03:00
func (c *commandable) BitOpXor(destKey string, keys ...string) *IntCmd {
2012-08-19 16:57:58 +04:00
return c.bitOp("XOR", destKey, keys...)
}
2015-01-24 15:12:48 +03:00
func (c *commandable) BitOpNot(destKey string, key string) *IntCmd {
2012-08-19 16:57:58 +04:00
return c.bitOp("NOT", destKey, key)
}
2012-07-26 19:16:17 +04:00
2014-10-07 14:54:43 +04:00
func (c *commandable) BitPos(key string, bit int64, pos ...int64) *IntCmd {
args := []string{"BITPOS", key, formatInt(bit)}
switch len(pos) {
case 0:
case 1:
args = append(args, formatInt(pos[0]))
case 2:
args = append(args, formatInt(pos[0]), formatInt(pos[1]))
default:
panic("too many arguments")
}
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Decr(key string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("DECR", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) DecrBy(key string, decrement int64) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("DECRBY", key, strconv.FormatInt(decrement, 10))
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Get(key string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("GET", key)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) GetBit(key string, offset int64) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("GETBIT", key, strconv.FormatInt(offset, 10))
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) GetRange(key string, start, end int64) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd(
2012-07-26 19:16:17 +04:00
"GETRANGE",
key,
strconv.FormatInt(start, 10),
strconv.FormatInt(end, 10),
)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) GetSet(key, value string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("GETSET", key, value)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Incr(key string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("INCR", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) IncrBy(key string, value int64) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("INCRBY", key, strconv.FormatInt(value, 10))
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) IncrByFloat(key string, value float64) *FloatCmd {
2014-06-25 11:40:56 +04:00
cmd := NewFloatCmd("INCRBYFLOAT", key, formatFloat(value))
c.Process(cmd)
return cmd
2012-08-19 16:57:58 +04:00
}
2012-07-26 19:16:17 +04:00
2015-01-24 15:12:48 +03:00
func (c *commandable) MGet(keys ...string) *SliceCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"MGET"}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewSliceCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) MSet(pairs ...string) *StatusCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"MSET"}, pairs...)
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) MSetNX(pairs ...string) *BoolCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"MSETNX"}, pairs...)
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
func (c *commandable) PSetEx(key string, expiration time.Duration, value string) *StatusCmd {
cmd := NewStatusCmd("PSETEX", key, formatMs(expiration), value)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
func (c *commandable) Set(key, value string, expiration time.Duration) *StatusCmd {
args := []string{"SET", key, value}
if expiration > 0 {
if usePrecise(expiration) {
args = append(args, "PX", formatMs(expiration))
} else {
args = append(args, "EX", formatSec(expiration))
}
}
cmd := NewStatusCmd(args...)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SetBit(key string, offset int64, value int) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(
2012-07-26 19:16:17 +04:00
"SETBIT",
key,
strconv.FormatInt(offset, 10),
strconv.FormatInt(int64(value), 10),
)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
func (c *commandable) SetEx(key string, expiration time.Duration, value string) *StatusCmd {
cmd := NewStatusCmd("SETEX", key, formatSec(expiration), value)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
func (c *commandable) SetNX(key, value string, expiration time.Duration) *BoolCmd {
var cmd *BoolCmd
if expiration == 0 {
// Use old `SETNX` to support old Redis versions.
cmd = NewBoolCmd("SETNX", key, value)
} else {
if usePrecise(expiration) {
cmd = NewBoolCmd("SET", key, value, "PX", formatMs(expiration), "NX")
} else {
cmd = NewBoolCmd("SET", key, value, "EX", formatSec(expiration), "NX")
}
}
c.Process(cmd)
return cmd
}
func (c *Client) SetXX(key, value string, expiration time.Duration) *BoolCmd {
var cmd *BoolCmd
if usePrecise(expiration) {
cmd = NewBoolCmd("SET", key, value, "PX", formatMs(expiration), "XX")
} else {
cmd = NewBoolCmd("SET", key, value, "EX", formatSec(expiration), "XX")
}
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SetRange(key string, offset int64, value string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("SETRANGE", key, strconv.FormatInt(offset, 10), value)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) StrLen(key string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("STRLEN", key)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) HDel(key string, fields ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"HDEL", key}, fields...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HExists(key, field string) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("HEXISTS", key, field)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HGet(key, field string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("HGET", key, field)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HGetAll(key string) *StringSliceCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd("HGETALL", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2012-07-25 17:00:50 +04:00
2015-01-24 15:12:48 +03:00
func (c *commandable) HGetAllMap(key string) *StringStringMapCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringStringMapCmd("HGETALL", key)
c.Process(cmd)
return cmd
2013-02-02 16:17:01 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HIncrBy(key, field string, incr int64) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("HINCRBY", key, field, strconv.FormatInt(incr, 10))
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HIncrByFloat(key, field string, incr float64) *FloatCmd {
2014-06-25 11:40:56 +04:00
cmd := NewFloatCmd("HINCRBYFLOAT", key, field, formatFloat(incr))
c.Process(cmd)
return cmd
2012-08-17 22:36:48 +04:00
}
2012-07-25 17:00:50 +04:00
2015-01-24 15:12:48 +03:00
func (c *commandable) HKeys(key string) *StringSliceCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd("HKEYS", key)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HLen(key string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("HLEN", key)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HMGet(key string, fields ...string) *SliceCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"HMGET", key}, fields...)
2014-06-25 11:40:56 +04:00
cmd := NewSliceCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2012-07-25 17:00:50 +04:00
2015-01-24 15:12:48 +03:00
func (c *commandable) HMSet(key, field, value string, pairs ...string) *StatusCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"HMSET", key, field, value}, pairs...)
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HSet(key, field, value string) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("HSET", key, field, value)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HSetNX(key, field, value string) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("HSETNX", key, field, value)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) HVals(key string) *StringSliceCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd("HVALS", key)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2012-07-26 19:16:17 +04:00
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) BLPop(timeout int64, keys ...string) *StringSliceCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"BLPOP"}, keys...)
args = append(args, strconv.FormatInt(timeout, 10))
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(args...)
cmd.setReadTimeout(readTimeout(timeout))
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) BRPop(timeout int64, keys ...string) *StringSliceCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"BRPOP"}, keys...)
args = append(args, strconv.FormatInt(timeout, 10))
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(args...)
cmd.setReadTimeout(readTimeout(timeout))
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) BRPopLPush(source, destination string, timeout int64) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd(
2012-07-26 19:16:17 +04:00
"BRPOPLPUSH",
source,
destination,
strconv.FormatInt(timeout, 10),
)
2014-06-25 11:40:56 +04:00
cmd.setReadTimeout(readTimeout(timeout))
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LIndex(key string, index int64) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("LINDEX", key, strconv.FormatInt(index, 10))
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LInsert(key, op, pivot, value string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("LINSERT", key, op, pivot, value)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LLen(key string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("LLEN", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LPop(key string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("LPOP", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LPush(key string, values ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"LPUSH", key}, values...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LPushX(key, value string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("LPUSHX", key, value)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LRange(key string, start, stop int64) *StringSliceCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(
2012-07-26 19:16:17 +04:00
"LRANGE",
key,
strconv.FormatInt(start, 10),
strconv.FormatInt(stop, 10),
)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LRem(key string, count int64, value string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("LREM", key, strconv.FormatInt(count, 10), value)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LSet(key string, index int64, value string) *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd("LSET", key, strconv.FormatInt(index, 10), value)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LTrim(key string, start, stop int64) *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd(
2012-07-26 19:16:17 +04:00
"LTRIM",
key,
strconv.FormatInt(start, 10),
strconv.FormatInt(stop, 10),
)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) RPop(key string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("RPOP", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) RPopLPush(source, destination string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("RPOPLPUSH", source, destination)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) RPush(key string, values ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"RPUSH", key}, values...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) RPushX(key string, value string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("RPUSHX", key, value)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) SAdd(key string, members ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"SADD", key}, members...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-25 17:00:50 +04:00
}
2012-07-26 19:16:17 +04:00
2015-01-24 15:12:48 +03:00
func (c *commandable) SCard(key string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("SCARD", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SDiff(keys ...string) *StringSliceCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"SDIFF"}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SDiffStore(destination string, keys ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"SDIFFSTORE", destination}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SInter(keys ...string) *StringSliceCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"SINTER"}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SInterStore(destination string, keys ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"SINTERSTORE", destination}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SIsMember(key, member string) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("SISMEMBER", key, member)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SMembers(key string) *StringSliceCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd("SMEMBERS", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SMove(source, destination, member string) *BoolCmd {
2014-06-25 11:40:56 +04:00
cmd := NewBoolCmd("SMOVE", source, destination, member)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SPop(key string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("SPOP", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SRandMember(key string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("SRANDMEMBER", key)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SRem(key string, members ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"SREM", key}, members...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SUnion(keys ...string) *StringSliceCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"SUNION"}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SUnionStore(destination string, keys ...string) *IntCmd {
2012-07-26 19:16:17 +04:00
args := append([]string{"SUNIONSTORE", destination}, keys...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-26 19:16:17 +04:00
}
//------------------------------------------------------------------------------
2012-08-17 22:36:48 +04:00
type Z struct {
2012-07-27 18:21:50 +04:00
Score float64
Member string
}
2012-08-17 22:36:48 +04:00
type ZStore struct {
Weights []int64
Aggregate string
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZAdd(key string, members ...Z) *IntCmd {
2012-07-27 18:21:50 +04:00
args := []string{"ZADD", key}
for _, m := range members {
2012-08-25 17:34:35 +04:00
args = append(args, formatFloat(m.Score), m.Member)
2012-07-27 18:21:50 +04:00
}
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZCard(key string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("ZCARD", key)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZCount(key, min, max string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("ZCOUNT", key, min, max)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZIncrBy(key string, increment float64, member string) *FloatCmd {
2014-06-25 11:40:56 +04:00
cmd := NewFloatCmd("ZINCRBY", key, formatFloat(increment), member)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZInterStore(
2012-07-27 18:21:50 +04:00
destination string,
2012-08-17 22:36:48 +04:00
store ZStore,
keys ...string,
2014-05-11 11:42:40 +04:00
) *IntCmd {
2012-08-20 14:42:33 +04:00
args := []string{"ZINTERSTORE", destination, strconv.FormatInt(int64(len(keys)), 10)}
2012-07-27 18:21:50 +04:00
args = append(args, keys...)
2012-08-17 22:36:48 +04:00
if len(store.Weights) > 0 {
2012-07-27 18:21:50 +04:00
args = append(args, "WEIGHTS")
2012-08-17 22:36:48 +04:00
for _, weight := range store.Weights {
args = append(args, strconv.FormatInt(weight, 10))
2012-07-27 18:21:50 +04:00
}
}
2012-08-17 22:36:48 +04:00
if store.Aggregate != "" {
args = append(args, "AGGREGATE", store.Aggregate)
2012-07-27 18:21:50 +04:00
}
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) zRange(key string, start, stop int64, withScores bool) *StringSliceCmd {
2012-07-27 18:21:50 +04:00
args := []string{
"ZRANGE",
key,
strconv.FormatInt(start, 10),
strconv.FormatInt(stop, 10),
}
if withScores {
args = append(args, "WITHSCORES")
}
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(args...)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRange(key string, start, stop int64) *StringSliceCmd {
2012-08-17 22:36:48 +04:00
return c.zRange(key, start, stop, false)
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRangeWithScores(key string, start, stop int64) *ZSliceCmd {
2013-02-02 16:17:01 +04:00
args := []string{
"ZRANGE",
key,
strconv.FormatInt(start, 10),
strconv.FormatInt(stop, 10),
"WITHSCORES",
}
2014-07-05 14:46:27 +04:00
cmd := NewZSliceCmd(args...)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2013-02-02 16:17:01 +04:00
}
2014-05-11 11:42:40 +04:00
type ZRangeByScore struct {
Min, Max string
2014-05-11 11:42:40 +04:00
Offset, Count int64
}
2015-01-24 15:12:48 +03:00
func (c *commandable) zRangeByScore(key string, opt ZRangeByScore, withScores bool) *StringSliceCmd {
2014-05-11 11:42:40 +04:00
args := []string{"ZRANGEBYSCORE", key, opt.Min, opt.Max}
2012-07-27 18:21:50 +04:00
if withScores {
args = append(args, "WITHSCORES")
}
2014-05-11 11:42:40 +04:00
if opt.Offset != 0 || opt.Count != 0 {
2012-07-27 18:21:50 +04:00
args = append(
args,
"LIMIT",
2014-05-11 11:42:40 +04:00
strconv.FormatInt(opt.Offset, 10),
strconv.FormatInt(opt.Count, 10),
2012-07-27 18:21:50 +04:00
)
}
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(args...)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRangeByScore(key string, opt ZRangeByScore) *StringSliceCmd {
2014-05-11 11:42:40 +04:00
return c.zRangeByScore(key, opt, false)
2012-08-17 22:36:48 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRangeByScoreWithScores(key string, opt ZRangeByScore) *ZSliceCmd {
2014-05-11 11:42:40 +04:00
args := []string{"ZRANGEBYSCORE", key, opt.Min, opt.Max, "WITHSCORES"}
if opt.Offset != 0 || opt.Count != 0 {
2013-02-02 16:17:01 +04:00
args = append(
args,
"LIMIT",
2014-05-11 11:42:40 +04:00
strconv.FormatInt(opt.Offset, 10),
strconv.FormatInt(opt.Count, 10),
2013-02-02 16:17:01 +04:00
)
}
2014-07-05 14:46:27 +04:00
cmd := NewZSliceCmd(args...)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2013-02-02 16:17:01 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRank(key, member string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("ZRANK", key, member)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRem(key string, members ...string) *IntCmd {
2012-07-27 18:21:50 +04:00
args := append([]string{"ZREM", key}, members...)
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRemRangeByRank(key string, start, stop int64) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(
2012-07-27 18:21:50 +04:00
"ZREMRANGEBYRANK",
key,
strconv.FormatInt(start, 10),
strconv.FormatInt(stop, 10),
)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRemRangeByScore(key, min, max string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("ZREMRANGEBYSCORE", key, min, max)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
func (c *commandable) ZRevRange(key string, start, stop int64) *StringSliceCmd {
cmd := NewStringSliceCmd("ZREVRANGE", key, formatInt(start), formatInt(stop))
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
func (c *commandable) ZRevRangeWithScores(key string, start, stop int64) *ZSliceCmd {
cmd := NewZSliceCmd("ZREVRANGE", key, formatInt(start), formatInt(stop), "WITHSCORES")
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2013-02-02 16:17:01 +04:00
}
func (c *commandable) ZRevRangeByScore(key string, opt ZRangeByScore) *StringSliceCmd {
2014-05-11 11:42:40 +04:00
args := []string{"ZREVRANGEBYSCORE", key, opt.Max, opt.Min}
if opt.Offset != 0 || opt.Count != 0 {
2012-07-27 18:21:50 +04:00
args = append(
args,
"LIMIT",
2014-05-11 11:42:40 +04:00
strconv.FormatInt(opt.Offset, 10),
strconv.FormatInt(opt.Count, 10),
2012-07-27 18:21:50 +04:00
)
}
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd(args...)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRevRangeByScoreWithScores(key string, opt ZRangeByScore) *ZSliceCmd {
2014-05-11 11:42:40 +04:00
args := []string{"ZREVRANGEBYSCORE", key, opt.Max, opt.Min, "WITHSCORES"}
if opt.Offset != 0 || opt.Count != 0 {
2013-02-02 16:17:01 +04:00
args = append(
args,
"LIMIT",
2014-05-11 11:42:40 +04:00
strconv.FormatInt(opt.Offset, 10),
strconv.FormatInt(opt.Count, 10),
2013-02-02 16:17:01 +04:00
)
}
2014-07-05 14:46:27 +04:00
cmd := NewZSliceCmd(args...)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2013-02-02 16:17:01 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZRevRank(key, member string) *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("ZREVRANK", key, member)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ZScore(key, member string) *FloatCmd {
2014-06-25 11:40:56 +04:00
cmd := NewFloatCmd("ZSCORE", key, member)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
func (c *commandable) ZUnionStore(dest string, store ZStore, keys ...string) *IntCmd {
args := []string{"ZUNIONSTORE", dest, strconv.FormatInt(int64(len(keys)), 10)}
2012-07-27 18:21:50 +04:00
args = append(args, keys...)
2012-08-17 22:36:48 +04:00
if len(store.Weights) > 0 {
2012-07-27 18:21:50 +04:00
args = append(args, "WEIGHTS")
2012-08-17 22:36:48 +04:00
for _, weight := range store.Weights {
args = append(args, strconv.FormatInt(weight, 10))
2012-07-27 18:21:50 +04:00
}
}
2012-08-17 22:36:48 +04:00
if store.Aggregate != "" {
args = append(args, "AGGREGATE", store.Aggregate)
2012-07-27 18:21:50 +04:00
}
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd(args...)
c.Process(cmd)
return cmd
2012-07-27 18:21:50 +04:00
}
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) BgRewriteAOF() *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd("BGREWRITEAOF")
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) BgSave() *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd("BGSAVE")
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ClientKill(ipPort string) *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd("CLIENT", "KILL", ipPort)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ClientList() *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("CLIENT", "LIST")
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ConfigGet(parameter string) *SliceCmd {
2014-06-25 11:40:56 +04:00
cmd := NewSliceCmd("CONFIG", "GET", parameter)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ConfigResetStat() *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd("CONFIG", "RESETSTAT")
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ConfigSet(parameter, value string) *StatusCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStatusCmd("CONFIG", "SET", parameter, value)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) DbSize() *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("DBSIZE")
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) FlushAll() *StatusCmd {
cmd := newKeylessStatusCmd("FLUSHALL")
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) FlushDb() *StatusCmd {
cmd := newKeylessStatusCmd("FLUSHDB")
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Info() *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("INFO")
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) LastSave() *IntCmd {
2014-06-25 11:40:56 +04:00
cmd := NewIntCmd("LASTSAVE")
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Save() *StatusCmd {
cmd := newKeylessStatusCmd("SAVE")
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) shutdown(modifier string) *StatusCmd {
2012-08-25 16:35:39 +04:00
var args []string
if modifier == "" {
args = []string{"SHUTDOWN"}
} else {
args = []string{"SHUTDOWN", modifier}
}
2015-01-24 15:12:48 +03:00
cmd := newKeylessStatusCmd(args...)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
2014-11-13 15:26:14 +03:00
if err := cmd.Err(); err != nil {
if err == io.EOF {
// Server quit as expected.
cmd.err = nil
}
} else {
// Server did not quit. String reply contains the reason.
cmd.err = errorf(cmd.val)
cmd.val = ""
}
2014-06-25 11:40:56 +04:00
return cmd
2012-08-25 16:35:39 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Shutdown() *StatusCmd {
2012-08-25 16:35:39 +04:00
return c.shutdown("")
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ShutdownSave() *StatusCmd {
2012-08-25 16:35:39 +04:00
return c.shutdown("SAVE")
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ShutdownNoSave() *StatusCmd {
2012-08-25 16:35:39 +04:00
return c.shutdown("NOSAVE")
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SlaveOf(host, port string) *StatusCmd {
cmd := newKeylessStatusCmd("SLAVEOF", host, port)
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) SlowLog() {
panic("not implemented")
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Sync() {
panic("not implemented")
}
2015-01-24 15:12:48 +03:00
func (c *commandable) Time() *StringSliceCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringSliceCmd("TIME")
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
}
2012-08-20 14:42:33 +04:00
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) Eval(script string, keys []string, args []string) *Cmd {
2014-06-25 11:40:56 +04:00
cmdArgs := []string{"EVAL", script, strconv.FormatInt(int64(len(keys)), 10)}
cmdArgs = append(cmdArgs, keys...)
cmdArgs = append(cmdArgs, args...)
cmd := NewCmd(cmdArgs...)
2015-01-24 15:12:48 +03:00
if len(keys) > 0 {
cmd._clusterKeyPos = 3
}
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-08-20 14:42:33 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) EvalSha(sha1 string, keys []string, args []string) *Cmd {
2014-06-25 11:40:56 +04:00
cmdArgs := []string{"EVALSHA", sha1, strconv.FormatInt(int64(len(keys)), 10)}
cmdArgs = append(cmdArgs, keys...)
cmdArgs = append(cmdArgs, args...)
cmd := NewCmd(cmdArgs...)
2015-01-24 15:12:48 +03:00
if len(keys) > 0 {
cmd._clusterKeyPos = 3
}
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-08-20 14:42:33 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ScriptExists(scripts ...string) *BoolSliceCmd {
2012-08-20 14:42:33 +04:00
args := append([]string{"SCRIPT", "EXISTS"}, scripts...)
2014-06-25 11:40:56 +04:00
cmd := NewBoolSliceCmd(args...)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2014-05-11 11:42:40 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ScriptFlush() *StatusCmd {
cmd := newKeylessStatusCmd("SCRIPT", "FLUSH")
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-08-20 14:42:33 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ScriptKill() *StatusCmd {
cmd := newKeylessStatusCmd("SCRIPT", "KILL")
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-08-20 14:42:33 +04:00
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ScriptLoad(script string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("SCRIPT", "LOAD", script)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-08-20 14:42:33 +04:00
}
2014-05-11 11:42:40 +04:00
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) DebugObject(key string) *StringCmd {
2014-06-25 11:40:56 +04:00
cmd := NewStringCmd("DEBUG", "OBJECT", key)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 2
2014-06-25 11:40:56 +04:00
c.Process(cmd)
return cmd
2012-08-20 14:42:33 +04:00
}
2014-10-07 14:06:41 +04:00
//------------------------------------------------------------------------------
2015-01-24 15:12:48 +03:00
func (c *commandable) PubSubChannels(pattern string) *StringSliceCmd {
args := []string{"PUBSUB", "CHANNELS"}
if pattern != "*" {
args = append(args, pattern)
}
cmd := NewStringSliceCmd(args...)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-10-07 14:06:41 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) PubSubNumSub(channels ...string) *StringIntMapCmd {
2014-10-07 14:06:41 +04:00
args := []string{"PUBSUB", "NUMSUB"}
args = append(args, channels...)
2015-01-25 15:05:19 +03:00
cmd := NewStringIntMapCmd(args...)
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
2014-10-07 14:06:41 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) PubSubNumPat() *IntCmd {
2014-10-07 14:06:41 +04:00
cmd := NewIntCmd("PUBSUB", "NUMPAT")
2015-01-24 15:12:48 +03:00
cmd._clusterKeyPos = 0
c.Process(cmd)
return cmd
}
//------------------------------------------------------------------------------
func (c *commandable) ClusterSlots() *ClusterSlotCmd {
cmd := NewClusterSlotCmd("CLUSTER", "slots")
cmd._clusterKeyPos = 0
c.Process(cmd)
return cmd
}
func (c *commandable) ClusterNodes() *StringCmd {
cmd := NewStringCmd("CLUSTER", "nodes")
cmd._clusterKeyPos = 0
c.Process(cmd)
return cmd
}
func (c *commandable) ClusterMeet(host, port string) *StatusCmd {
cmd := newKeylessStatusCmd("CLUSTER", "meet", host, port)
2014-10-07 14:06:41 +04:00
c.Process(cmd)
return cmd
}
2015-01-24 15:12:48 +03:00
func (c *commandable) ClusterReplicate(nodeID string) *StatusCmd {
cmd := newKeylessStatusCmd("CLUSTER", "replicate", nodeID)
c.Process(cmd)
return cmd
}
func (c *commandable) ClusterInfo() *StringCmd {
cmd := NewStringCmd("CLUSTER", "info")
cmd._clusterKeyPos = 0
c.Process(cmd)
return cmd
}
func (c *commandable) ClusterFailover() *StatusCmd {
cmd := newKeylessStatusCmd("CLUSTER", "failover")
c.Process(cmd)
return cmd
}
func (c *commandable) ClusterAddSlots(slots ...int) *StatusCmd {
args := make([]string, len(slots)+2)
args[0] = "CLUSTER"
args[1] = "addslots"
for i, num := range slots {
args[i+2] = strconv.Itoa(num)
}
cmd := newKeylessStatusCmd(args...)
c.Process(cmd)
return cmd
}
func (c *commandable) ClusterAddSlotsRange(min, max int) *StatusCmd {
size := max - min + 1
slots := make([]int, size)
for i := 0; i < size; i++ {
slots[i] = min + i
}
return c.ClusterAddSlots(slots...)
}