Documentation ¶
Index ¶
- Variables
- type BitCount
- type Client
- func (c *Client) Append(_ context.Context, key, value string) *redis.IntCmd
- func (c *Client) BLPop(_ context.Context, timeout time.Duration, keys ...string) *redis.StringSliceCmd
- func (c *Client) BRPop(_ context.Context, timeout time.Duration, keys ...string) *redis.StringSliceCmd
- func (c *Client) BRPopLPush(_ context.Context, source, destination string, timeout time.Duration) *redis.StringCmd
- func (c *Client) BZPopMax(_ context.Context, timeout time.Duration, keys ...string) *redis.ZWithKeyCmd
- func (c *Client) BZPopMin(_ context.Context, timeout time.Duration, keys ...string) *redis.ZWithKeyCmd
- func (c *Client) BgRewriteAOF(_ context.Context) *redis.StatusCmd
- func (c *Client) BgSave(_ context.Context) *redis.StatusCmd
- func (c *Client) BitCount(_ context.Context, key string, bitCount *redis.BitCount) *redis.IntCmd
- func (c *Client) BitOpAnd(_ context.Context, destKey string, keys ...string) *redis.IntCmd
- func (c *Client) BitOpNot(_ context.Context, destKey string, key string) *redis.IntCmd
- func (c *Client) BitOpOr(_ context.Context, destKey string, keys ...string) *redis.IntCmd
- func (c *Client) BitOpXor(_ context.Context, destKey string, keys ...string) *redis.IntCmd
- func (c *Client) BitPos(_ context.Context, key string, bit int64, pos ...int64) *redis.IntCmd
- func (c *Client) ClientGetName(_ context.Context) *redis.StringCmd
- func (c *Client) ClientID(_ context.Context) *redis.IntCmd
- func (c *Client) ClientKill(_ context.Context, ipPort string) *redis.StatusCmd
- func (c *Client) ClientKillByFilter(_ context.Context, keys ...string) *redis.IntCmd
- func (c *Client) ClientList(_ context.Context) *redis.StringCmd
- func (c *Client) ClientPause(_ context.Context, dur time.Duration) *redis.BoolCmd
- func (c *Client) ClientUnblock(_ context.Context, id int64) *redis.IntCmd
- func (c *Client) ClientUnblockWithError(_ context.Context, id int64) *redis.IntCmd
- func (c *Client) ClusterAddSlots(_ context.Context, slots ...int) *redis.StatusCmd
- func (c *Client) ClusterAddSlotsRange(_ context.Context, min, max int) *redis.StatusCmd
- func (c *Client) ClusterCountFailureReports(_ context.Context, nodeID string) *redis.IntCmd
- func (c *Client) ClusterCountKeysInSlot(_ context.Context, slot int) *redis.IntCmd
- func (c *Client) ClusterDelSlots(_ context.Context, slots ...int) *redis.StatusCmd
- func (c *Client) ClusterDelSlotsRange(_ context.Context, min, max int) *redis.StatusCmd
- func (c *Client) ClusterFailover(_ context.Context) *redis.StatusCmd
- func (c *Client) ClusterForget(_ context.Context, nodeID string) *redis.StatusCmd
- func (c *Client) ClusterGetKeysInSlot(_ context.Context, slot int, count int) *redis.StringSliceCmd
- func (c *Client) ClusterInfo(_ context.Context) *redis.StringCmd
- func (c *Client) ClusterKeySlot(_ context.Context, key string) *redis.IntCmd
- func (c *Client) ClusterMeet(_ context.Context, host, port string) *redis.StatusCmd
- func (c *Client) ClusterNodes(_ context.Context) *redis.StringCmd
- func (c *Client) ClusterReplicate(_ context.Context, nodeID string) *redis.StatusCmd
- func (c *Client) ClusterResetHard(_ context.Context) *redis.StatusCmd
- func (c *Client) ClusterResetSoft(_ context.Context) *redis.StatusCmd
- func (c *Client) ClusterSaveConfig(_ context.Context) *redis.StatusCmd
- func (c *Client) ClusterSlaves(_ context.Context, nodeID string) *redis.StringSliceCmd
- func (c *Client) ClusterSlots(_ context.Context) *redis.ClusterSlotsCmd
- func (c *Client) Command(_ context.Context) *redis.CommandsInfoCmd
- func (c *Client) ConfigGet(_ context.Context, parameter string) *redis.SliceCmd
- func (c *Client) ConfigResetStat(_ context.Context) *redis.StatusCmd
- func (c *Client) ConfigRewrite(_ context.Context) *redis.StatusCmd
- func (c *Client) ConfigSet(_ context.Context, parameter, value string) *redis.StatusCmd
- func (c *Client) DBSize(_ context.Context) *redis.IntCmd
- func (c *Client) DebugObject(_ context.Context, key string) *redis.StringCmd
- func (c *Client) Decr(_ context.Context, key string) *redis.IntCmd
- func (c *Client) DecrBy(_ context.Context, key string, decrement int64) *redis.IntCmd
- func (c *Client) Del(_ context.Context, keys ...string) *redis.IntCmd
- func (c *Client) Dump(_ context.Context, key string) *redis.StringCmd
- func (c *Client) Echo(_ context.Context, message interface{}) *redis.StringCmd
- func (c *Client) Eval(_ context.Context, script string, keys []string, args ...interface{}) *redis.Cmd
- func (c *Client) EvalSha(_ context.Context, sha1 string, keys []string, args ...interface{}) *redis.Cmd
- func (c *Client) Exists(_ context.Context, keys ...string) *redis.IntCmd
- func (c *Client) Expire(_ context.Context, key string, expiration time.Duration) *redis.BoolCmd
- func (c *Client) ExpireAt(_ context.Context, key string, tm time.Time) *redis.BoolCmd
- func (c *Client) FlushAll(_ context.Context) *redis.StatusCmd
- func (c *Client) FlushAllAsync(_ context.Context) *redis.StatusCmd
- func (c *Client) FlushDB(_ context.Context) *redis.StatusCmd
- func (c *Client) FlushDBAsync(_ context.Context) *redis.StatusCmd
- func (c *Client) GeoAdd(_ context.Context, key string, geoLocation ...*redis.GeoLocation) *redis.IntCmd
- func (c *Client) GeoDist(_ context.Context, key string, member1, member2, unit string) *redis.FloatCmd
- func (c *Client) GeoHash(_ context.Context, key string, members ...string) *redis.StringSliceCmd
- func (c *Client) GeoPos(_ context.Context, key string, members ...string) *redis.GeoPosCmd
- func (c *Client) GeoRadius(_ context.Context, key string, longitude, latitude float64, ...) *redis.GeoLocationCmd
- func (c *Client) GeoRadiusByMember(_ context.Context, key, member string, query *redis.GeoRadiusQuery) *redis.GeoLocationCmd
- func (c *Client) GeoRadiusByMemberRO(_ context.Context, key, member string, query *redis.GeoRadiusQuery) *redis.GeoLocationCmd
- func (c *Client) GeoRadiusRO(_ context.Context, key string, longitude, latitude float64, ...) *redis.GeoLocationCmd
- func (c *Client) Get(_ context.Context, key string) *redis.StringCmd
- func (c *Client) GetBit(_ context.Context, key string, offset int64) *redis.IntCmd
- func (c *Client) GetRange(_ context.Context, key string, start, end int64) *redis.StringCmd
- func (c *Client) GetSet(_ context.Context, key string, value interface{}) *redis.StringCmd
- func (c *Client) HDel(_ context.Context, key string, fields ...string) *redis.IntCmd
- func (c *Client) HExists(_ context.Context, key, field string) *redis.BoolCmd
- func (c *Client) HGet(_ context.Context, key, field string) *redis.StringCmd
- func (c *Client) HGetAll(_ context.Context, key string) *redis.StringStringMapCmd
- func (c *Client) HIncrBy(_ context.Context, key, field string, incr int64) *redis.IntCmd
- func (c *Client) HIncrByFloat(_ context.Context, key, field string, incr float64) *redis.FloatCmd
- func (c *Client) HKeys(_ context.Context, key string) *redis.StringSliceCmd
- func (c *Client) HLen(_ context.Context, key string) *redis.IntCmd
- func (c *Client) HMGet(_ context.Context, key string, fields ...string) *redis.SliceCmd
- func (c *Client) HMSet(_ context.Context, key string, fields map[string]interface{}) *redis.StatusCmd
- func (c *Client) HScan(_ context.Context, key string, cursor uint64, match string, count int64) *redis.ScanCmd
- func (c *Client) HSet(_ context.Context, key, field string, value interface{}) *redis.BoolCmd
- func (c *Client) HSetNX(_ context.Context, key, field string, value interface{}) *redis.BoolCmd
- func (c *Client) HVals(_ context.Context, key string) *redis.StringSliceCmd
- func (c *Client) Incr(_ context.Context, key string) *redis.IntCmd
- func (c *Client) IncrBy(_ context.Context, key string, value int64) *redis.IntCmd
- func (c *Client) IncrByFloat(_ context.Context, key string, value float64) *redis.FloatCmd
- func (c *Client) Info(_ context.Context, section ...string) *redis.StringCmd
- func (c *Client) Keys(_ context.Context, pattern string) *redis.StringSliceCmd
- func (c *Client) LIndex(_ context.Context, key string, index int64) *redis.StringCmd
- func (c *Client) LInsert(_ context.Context, key, op string, pivot, value interface{}) *redis.IntCmd
- func (c *Client) LInsertAfter(_ context.Context, key string, pivot, value interface{}) *redis.IntCmd
- func (c *Client) LInsertBefore(_ context.Context, key string, pivot, value interface{}) *redis.IntCmd
- func (c *Client) LLen(_ context.Context, key string) *redis.IntCmd
- func (c *Client) LPop(_ context.Context, key string) *redis.StringCmd
- func (c *Client) LPush(_ context.Context, key string, values ...interface{}) *redis.IntCmd
- func (c *Client) LPushX(_ context.Context, key string, value interface{}) *redis.IntCmd
- func (c *Client) LRange(_ context.Context, key string, start, stop int64) *redis.StringSliceCmd
- func (c *Client) LRem(_ context.Context, key string, count int64, value interface{}) *redis.IntCmd
- func (c *Client) LSet(_ context.Context, key string, index int64, value interface{}) *redis.StatusCmd
- func (c *Client) LTrim(_ context.Context, key string, start, stop int64) *redis.StatusCmd
- func (c *Client) LastSave(_ context.Context) *redis.IntCmd
- func (c *Client) MGet(_ context.Context, keys ...string) *redis.SliceCmd
- func (c *Client) MSet(_ context.Context, pairs ...interface{}) *redis.StatusCmd
- func (c *Client) MSetNX(_ context.Context, pairs ...interface{}) *redis.BoolCmd
- func (c *Client) MemoryUsage(_ context.Context, key string, samples ...int) *redis.IntCmd
- func (c *Client) Migrate(_ context.Context, host, port, key string, db int64, timeout time.Duration) *redis.StatusCmd
- func (c *Client) Move(_ context.Context, key string, db int64) *redis.BoolCmd
- func (c *Client) ObjectEncoding(_ context.Context, key string) *redis.StringCmd
- func (c *Client) ObjectIdleTime(_ context.Context, key string) *redis.DurationCmd
- func (c *Client) ObjectRefCount(_ context.Context, key string) *redis.IntCmd
- func (c *Client) PExpire(_ context.Context, key string, expiration time.Duration) *redis.BoolCmd
- func (c *Client) PExpireAt(_ context.Context, key string, tm time.Time) *redis.BoolCmd
- func (c *Client) PFAdd(_ context.Context, key string, els ...interface{}) *redis.IntCmd
- func (c *Client) PFCount(_ context.Context, keys ...string) *redis.IntCmd
- func (c *Client) PFMerge(_ context.Context, dest string, keys ...string) *redis.StatusCmd
- func (c *Client) PTTL(_ context.Context, key string) *redis.DurationCmd
- func (c *Client) Persist(_ context.Context, key string) *redis.BoolCmd
- func (c *Client) Ping(_ context.Context) *redis.StatusCmd
- func (c *Client) PubSubChannels(_ context.Context, pattern string) *redis.StringSliceCmd
- func (c *Client) PubSubNumPat(_ context.Context) *redis.IntCmd
- func (c *Client) PubSubNumSub(_ context.Context, channels ...string) *redis.StringIntMapCmd
- func (c *Client) Publish(_ context.Context, channel string, message interface{}) *redis.IntCmd
- func (c *Client) Quit(_ context.Context) *redis.StatusCmd
- func (c *Client) RPop(_ context.Context, key string) *redis.StringCmd
- func (c *Client) RPopLPush(_ context.Context, source, destination string) *redis.StringCmd
- func (c *Client) RPush(_ context.Context, key string, values ...interface{}) *redis.IntCmd
- func (c *Client) RPushX(_ context.Context, key string, value interface{}) *redis.IntCmd
- func (c *Client) RandomKey(_ context.Context) *redis.StringCmd
- func (c *Client) RawClient() *redis.Client
- func (c *Client) ReadOnly(_ context.Context) *redis.StatusCmd
- func (c *Client) ReadWrite(_ context.Context) *redis.StatusCmd
- func (c *Client) Rename(_ context.Context, key, newkey string) *redis.StatusCmd
- func (c *Client) RenameNX(_ context.Context, key, newkey string) *redis.BoolCmd
- func (c *Client) Restore(_ context.Context, key string, ttl time.Duration, value string) *redis.StatusCmd
- func (c *Client) RestoreReplace(_ context.Context, key string, ttl time.Duration, value string) *redis.StatusCmd
- func (c *Client) SAdd(_ context.Context, key string, members ...interface{}) *redis.IntCmd
- func (c *Client) SCard(_ context.Context, key string) *redis.IntCmd
- func (c *Client) SDiff(_ context.Context, keys ...string) *redis.StringSliceCmd
- func (c *Client) SDiffStore(_ context.Context, destination string, keys ...string) *redis.IntCmd
- func (c *Client) SInter(_ context.Context, keys ...string) *redis.StringSliceCmd
- func (c *Client) SInterStore(_ context.Context, destination string, keys ...string) *redis.IntCmd
- func (c *Client) SIsMember(_ context.Context, key string, member interface{}) *redis.BoolCmd
- func (c *Client) SMembers(_ context.Context, key string) *redis.StringSliceCmd
- func (c *Client) SMembersMap(_ context.Context, key string) *redis.StringStructMapCmd
- func (c *Client) SMove(_ context.Context, source, destination string, member interface{}) *redis.BoolCmd
- func (c *Client) SPop(_ context.Context, key string) *redis.StringCmd
- func (c *Client) SPopN(_ context.Context, key string, count int64) *redis.StringSliceCmd
- func (c *Client) SRandMember(_ context.Context, key string) *redis.StringCmd
- func (c *Client) SRandMemberN(_ context.Context, key string, count int64) *redis.StringSliceCmd
- func (c *Client) SRem(_ context.Context, key string, members ...interface{}) *redis.IntCmd
- func (c *Client) SScan(_ context.Context, key string, cursor uint64, match string, count int64) *redis.ScanCmd
- func (c *Client) SUnion(_ context.Context, keys ...string) *redis.StringSliceCmd
- func (c *Client) SUnionStore(_ context.Context, destination string, keys ...string) *redis.IntCmd
- func (c *Client) Save(_ context.Context) *redis.StatusCmd
- func (c *Client) Scan(_ context.Context, cursor uint64, match string, count int64) *redis.ScanCmd
- func (c *Client) ScriptExists(_ context.Context, hashes ...string) *redis.BoolSliceCmd
- func (c *Client) ScriptFlush(_ context.Context) *redis.StatusCmd
- func (c *Client) ScriptKill(_ context.Context) *redis.StatusCmd
- func (c *Client) ScriptLoad(_ context.Context, script string) *redis.StringCmd
- func (c *Client) Set(_ context.Context, key string, value interface{}, expiration time.Duration) *redis.StatusCmd
- func (c *Client) SetNX(_ context.Context, key string, value interface{}, expiration time.Duration) *redis.BoolCmd
- func (c *Client) SetRange(_ context.Context, key string, offset int64, value string) *redis.IntCmd
- func (c *Client) SetXX(_ context.Context, key string, value interface{}, expiration time.Duration) *redis.BoolCmd
- func (c *Client) Shutdown(_ context.Context) *redis.StatusCmd
- func (c *Client) ShutdownNoSave() *redis.StatusCmd
- func (c *Client) ShutdownSave(_ context.Context) *redis.StatusCmd
- func (c *Client) SlaveOf(_ context.Context, host, port string) *redis.StatusCmd
- func (c *Client) SlowLog(_ context.Context)
- func (c *Client) Sort(_ context.Context, key string, sort *redis.Sort) *redis.StringSliceCmd
- func (c *Client) SortInterfaces(_ context.Context, key string, sort *redis.Sort) *redis.SliceCmd
- func (c *Client) SortStore(_ context.Context, key, store string, sort *redis.Sort) *redis.IntCmd
- func (c *Client) StrLen(_ context.Context, key string) *redis.IntCmd
- func (c *Client) Sync(_ context.Context)
- func (c *Client) TTL(_ context.Context, key string) *redis.DurationCmd
- func (c *Client) Time(_ context.Context) *redis.TimeCmd
- func (c *Client) Touch(_ context.Context, keys ...string) *redis.IntCmd
- func (c *Client) Type(_ context.Context, key string) *redis.StatusCmd
- func (c *Client) Unlink(keys ...string) *redis.IntCmd
- func (c *Client) Wait(_ context.Context, numSlaves int, timeout time.Duration) *redis.IntCmd
- func (c *Client) XAck(_ context.Context, stream, group string, ids ...string) *redis.IntCmd
- func (c *Client) XAdd(_ context.Context, a *redis.XAddArgs) *redis.StringCmd
- func (c *Client) XClaim(_ context.Context, a *redis.XClaimArgs) *redis.XMessageSliceCmd
- func (c *Client) XClaimJustID(_ context.Context, a *redis.XClaimArgs) *redis.StringSliceCmd
- func (c *Client) XDel(_ context.Context, stream string, ids ...string) *redis.IntCmd
- func (c *Client) XGroupCreate(_ context.Context, stream, group, start string) *redis.StatusCmd
- func (c *Client) XGroupCreateMkStream(_ context.Context, stream, group, start string) *redis.StatusCmd
- func (c *Client) XGroupDelConsumer(_ context.Context, stream, group, consumer string) *redis.IntCmd
- func (c *Client) XGroupDestroy(_ context.Context, stream, group string) *redis.IntCmd
- func (c *Client) XGroupSetID(_ context.Context, stream, group, start string) *redis.StatusCmd
- func (c *Client) XLen(_ context.Context, stream string) *redis.IntCmd
- func (c *Client) XPending(_ context.Context, stream, group string) *redis.XPendingCmd
- func (c *Client) XPendingExt(_ context.Context, a *redis.XPendingExtArgs) *redis.XPendingExtCmd
- func (c *Client) XRange(_ context.Context, stream, start, stop string) *redis.XMessageSliceCmd
- func (c *Client) XRangeN(_ context.Context, stream, start, stop string, count int64) *redis.XMessageSliceCmd
- func (c *Client) XRead(_ context.Context, a *redis.XReadArgs) *redis.XStreamSliceCmd
- func (c *Client) XReadGroup(_ context.Context, a *redis.XReadGroupArgs) *redis.XStreamSliceCmd
- func (c *Client) XReadStreams(_ context.Context, streams ...string) *redis.XStreamSliceCmd
- func (c *Client) XRevRange(_ context.Context, stream, start, stop string) *redis.XMessageSliceCmd
- func (c *Client) XRevRangeN(_ context.Context, stream, start, stop string, count int64) *redis.XMessageSliceCmd
- func (c *Client) XTrim(_ context.Context, key string, maxLen int64) *redis.IntCmd
- func (c *Client) XTrimApprox(_ context.Context, key string, maxLen int64) *redis.IntCmd
- func (c *Client) ZAdd(_ context.Context, key string, members ...redis.Z) *redis.IntCmd
- func (c *Client) ZAddCh(_ context.Context, key string, members ...redis.Z) *redis.IntCmd
- func (c *Client) ZAddNX(_ context.Context, key string, members ...redis.Z) *redis.IntCmd
- func (c *Client) ZAddNXCh(_ context.Context, key string, members ...redis.Z) *redis.IntCmd
- func (c *Client) ZAddXX(_ context.Context, key string, members ...redis.Z) *redis.IntCmd
- func (c *Client) ZAddXXCh(_ context.Context, key string, members ...redis.Z) *redis.IntCmd
- func (c *Client) ZCard(_ context.Context, key string) *redis.IntCmd
- func (c *Client) ZCount(_ context.Context, key, min, max string) *redis.IntCmd
- func (c *Client) ZIncr(_ context.Context, key string, member redis.Z) *redis.FloatCmd
- func (c *Client) ZIncrBy(_ context.Context, key string, increment float64, member string) *redis.FloatCmd
- func (c *Client) ZIncrNX(_ context.Context, key string, member redis.Z) *redis.FloatCmd
- func (c *Client) ZIncrXX(_ context.Context, key string, member redis.Z) *redis.FloatCmd
- func (c *Client) ZInterStore(_ context.Context, destination string, store redis.ZStore, keys ...string) *redis.IntCmd
- func (c *Client) ZLexCount(_ context.Context, key, min, max string) *redis.IntCmd
- func (c *Client) ZPopMax(_ context.Context, key string, count ...int64) *redis.ZSliceCmd
- func (c *Client) ZPopMin(_ context.Context, key string, count ...int64) *redis.ZSliceCmd
- func (c *Client) ZRange(_ context.Context, key string, start, stop int64) *redis.StringSliceCmd
- func (c *Client) ZRangeByLex(_ context.Context, key string, opt redis.ZRangeBy) *redis.StringSliceCmd
- func (c *Client) ZRangeByScore(_ context.Context, key string, opt redis.ZRangeBy) *redis.StringSliceCmd
- func (c *Client) ZRangeByScoreWithScores(_ context.Context, key string, opt redis.ZRangeBy) *redis.ZSliceCmd
- func (c *Client) ZRangeWithScores(_ context.Context, key string, start, stop int64) *redis.ZSliceCmd
- func (c *Client) ZRank(_ context.Context, key, member string) *redis.IntCmd
- func (c *Client) ZRem(_ context.Context, key string, members ...interface{}) *redis.IntCmd
- func (c *Client) ZRemRangeByLex(_ context.Context, key, min, max string) *redis.IntCmd
- func (c *Client) ZRemRangeByRank(_ context.Context, key string, start, stop int64) *redis.IntCmd
- func (c *Client) ZRemRangeByScore(_ context.Context, key, min, max string) *redis.IntCmd
- func (c *Client) ZRevRange(_ context.Context, key string, start, stop int64) *redis.StringSliceCmd
- func (c *Client) ZRevRangeByLex(_ context.Context, key string, opt redis.ZRangeBy) *redis.StringSliceCmd
- func (c *Client) ZRevRangeByScore(_ context.Context, key string, opt redis.ZRangeBy) *redis.StringSliceCmd
- func (c *Client) ZRevRangeByScoreWithScores(_ context.Context, key string, opt redis.ZRangeBy) *redis.ZSliceCmd
- func (c *Client) ZRevRangeWithScores(_ context.Context, key string, start, stop int64) *redis.ZSliceCmd
- func (c *Client) ZRevRank(_ context.Context, key, member string) *redis.IntCmd
- func (c *Client) ZScan(_ context.Context, key string, cursor uint64, match string, count int64) *redis.ScanCmd
- func (c *Client) ZScore(_ context.Context, key, member string) *redis.FloatCmd
- func (c *Client) ZUnionStore(_ context.Context, dest string, store redis.ZStore, keys ...string) *redis.IntCmd
Constants ¶
This section is empty.
Variables ¶
var (
Nil = redis.Nil
)
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) BLPop ¶
func (c *Client) BLPop(_ context.Context, timeout time.Duration, keys ...string) *redis.StringSliceCmd
------------------------------------------------------------------------------
func (*Client) BRPopLPush ¶
func (*Client) BZPopMax ¶
func (c *Client) BZPopMax(_ context.Context, timeout time.Duration, keys ...string) *redis.ZWithKeyCmd
ZWithKey represents sorted set member including the name of the key where it was popped. Redis `BZPOPMAX key [key ...] timeout` command.
func (*Client) BZPopMin ¶
func (c *Client) BZPopMin(_ context.Context, timeout time.Duration, keys ...string) *redis.ZWithKeyCmd
Redis `BZPOPMIN key [key ...] timeout` command.
func (*Client) ClientGetName ¶
ClientGetName returns the name of the connection.
func (*Client) ClientKill ¶
func (*Client) ClientKillByFilter ¶
ClientKillByFilter is new style synx, while the ClientKill is old CLIENT KILL <option> [value] ... <option> [value]
func (*Client) ClientPause ¶
func (*Client) ClientUnblock ¶
func (*Client) ClientUnblockWithError ¶
func (*Client) ClusterAddSlots ¶
func (*Client) ClusterAddSlotsRange ¶
func (*Client) ClusterCountFailureReports ¶
func (*Client) ClusterCountKeysInSlot ¶
func (*Client) ClusterDelSlots ¶
func (*Client) ClusterDelSlotsRange ¶
func (*Client) ClusterFailover ¶
func (*Client) ClusterForget ¶
func (*Client) ClusterGetKeysInSlot ¶
func (*Client) ClusterKeySlot ¶
func (*Client) ClusterMeet ¶
func (*Client) ClusterReplicate ¶
func (*Client) ClusterResetHard ¶
func (*Client) ClusterResetSoft ¶
func (*Client) ClusterSaveConfig ¶
func (*Client) ClusterSlaves ¶
func (*Client) ClusterSlots ¶
func (c *Client) ClusterSlots(_ context.Context) *redis.ClusterSlotsCmd
func (*Client) ConfigResetStat ¶
func (*Client) DebugObject ¶
func (*Client) Echo ¶
------------------------------------------------------------------------------
func (*Client) GeoRadius ¶
func (c *Client) GeoRadius(_ context.Context, key string, longitude, latitude float64, query *redis.GeoRadiusQuery) *redis.GeoLocationCmd
func (*Client) GeoRadiusByMember ¶
func (c *Client) GeoRadiusByMember(_ context.Context, key, member string, query *redis.GeoRadiusQuery) *redis.GeoLocationCmd
func (*Client) GeoRadiusByMemberRO ¶
func (c *Client) GeoRadiusByMemberRO(_ context.Context, key, member string, query *redis.GeoRadiusQuery) *redis.GeoLocationCmd
func (*Client) GeoRadiusRO ¶
func (c *Client) GeoRadiusRO(_ context.Context, key string, longitude, latitude float64, query *redis.GeoRadiusQuery) *redis.GeoLocationCmd
func (*Client) HIncrByFloat ¶
func (*Client) IncrByFloat ¶
func (*Client) LInsertAfter ¶
func (*Client) LInsertBefore ¶
func (*Client) MemoryUsage ¶
------------------------------------------------------------------------------
func (*Client) ObjectEncoding ¶
func (*Client) ObjectIdleTime ¶
func (*Client) ObjectRefCount ¶
func (*Client) PubSubChannels ¶
func (*Client) PubSubNumSub ¶
func (*Client) RestoreReplace ¶
func (*Client) SDiffStore ¶
func (*Client) SInterStore ¶
func (*Client) SMembersMap ¶
Redis `SMEMBERS key` command output as a map
func (*Client) SRandMember ¶
Redis `SRANDMEMBER key` command.
func (*Client) SRandMemberN ¶
Redis `SRANDMEMBER key count` command.
func (*Client) SUnionStore ¶
func (*Client) ScriptExists ¶
func (*Client) ScriptLoad ¶
func (*Client) ShutdownNoSave ¶
func (*Client) SortInterfaces ¶
func (*Client) XAdd ¶
------------------------------------------------------------------------------
func (*Client) XClaim ¶
func (c *Client) XClaim(_ context.Context, a *redis.XClaimArgs) *redis.XMessageSliceCmd
func (*Client) XClaimJustID ¶
func (c *Client) XClaimJustID(_ context.Context, a *redis.XClaimArgs) *redis.StringSliceCmd
func (*Client) XGroupCreate ¶
func (*Client) XGroupCreateMkStream ¶
func (*Client) XGroupDelConsumer ¶
func (*Client) XGroupDestroy ¶
func (*Client) XGroupSetID ¶
func (*Client) XPendingExt ¶
func (c *Client) XPendingExt(_ context.Context, a *redis.XPendingExtArgs) *redis.XPendingExtCmd
func (*Client) XReadGroup ¶
func (c *Client) XReadGroup(_ context.Context, a *redis.XReadGroupArgs) *redis.XStreamSliceCmd