Merge pull request #368 from go-redis/fix/cmdable-iface

Fix Cmdable interface.
This commit is contained in:
Vladimir Mihailenco 2016-09-14 13:09:16 +03:00 committed by GitHub
commit 1a0bda80bf
1 changed files with 0 additions and 2 deletions

View File

@ -74,7 +74,6 @@ type Cmdable interface {
ZScan(key string, cursor uint64, match string, count int64) Scanner ZScan(key string, cursor uint64, match string, count int64) Scanner
Append(key, value string) *IntCmd Append(key, value string) *IntCmd
BitCount(key string, bitCount *BitCount) *IntCmd BitCount(key string, bitCount *BitCount) *IntCmd
bitOp(op, destKey string, keys ...string) *IntCmd
BitOpAnd(destKey string, keys ...string) *IntCmd BitOpAnd(destKey string, keys ...string) *IntCmd
BitOpOr(destKey string, keys ...string) *IntCmd BitOpOr(destKey string, keys ...string) *IntCmd
BitOpXor(destKey string, keys ...string) *IntCmd BitOpXor(destKey string, keys ...string) *IntCmd
@ -153,7 +152,6 @@ type Cmdable interface {
ZAddCh(key string, members ...Z) *IntCmd ZAddCh(key string, members ...Z) *IntCmd
ZAddNXCh(key string, members ...Z) *IntCmd ZAddNXCh(key string, members ...Z) *IntCmd
ZAddXXCh(key string, members ...Z) *IntCmd ZAddXXCh(key string, members ...Z) *IntCmd
zIncr(a []interface{}, n int, members ...Z) *FloatCmd
ZIncr(key string, member Z) *FloatCmd ZIncr(key string, member Z) *FloatCmd
ZIncrNX(key string, member Z) *FloatCmd ZIncrNX(key string, member Z) *FloatCmd
ZIncrXX(key string, member Z) *FloatCmd ZIncrXX(key string, member Z) *FloatCmd