Documentation
¶
Overview ¶
Package redis implements a Redis client.
Example (CustomCommand) ¶
Get := func(ctx context.Context, rdb *redis.Client, key string) *redis.StringCmd {
cmd := redis.NewStringCmd(ctx, "get", key)
rdb.Process(ctx, cmd)
return cmd
}
v, err := Get(ctx, rdb, "key_does_not_exist").Result()
fmt.Printf("%q %s", v, err)
Output: "" redis: nil
Example (CustomCommand2) ¶
v, err := rdb.Do(ctx, "get", "key_does_not_exist").Text()
fmt.Printf("%q %s", v, err)
Output: "" redis: nil
Example (Instrumentation) ¶
rdb := redis.NewClient(&redis.Options{
Addr: ":6379",
DisableIdentity: true,
})
rdb.AddHook(redisHook{})
rdb.Ping(ctx)
Output: starting processing: <[ping]> dialing tcp :6379 finished dialing tcp :6379 starting processing: <[hello 3]> finished processing: <[hello 3]> starting processing: <[client maint_notifications on moving-endpoint-type internal-fqdn]> finished processing: <[client maint_notifications on moving-endpoint-type internal-fqdn]> finished processing: <[ping]>
Index ¶
- Constants
- Variables
- func ExtractCommandValue(cmd interface{}) (interface{}, error)
- func HasErrorPrefix(err error, prefix string) bool
- func IsAskError(err error) (addr string, ok bool)
- func IsAuthError(err error) bool
- func IsClusterDownError(err error) bool
- func IsExecAbortError(err error) bool
- func IsLoadingError(err error) bool
- func IsMasterDownError(err error) bool
- func IsMaxClientsError(err error) bool
- func IsMovedError(err error) (addr string, ok bool)
- func IsNoReplicasError(err error) bool
- func IsOOMError(err error) bool
- func IsPermissionError(err error) bool
- func IsReadOnlyError(err error) bool
- func IsTryAgainError(err error) bool
- func NewCommandInfoResolver(resolveFunc CommandInfoResolveFunc) *commandInfoResolver
- func NewDefaultCommandPolicyResolver() *commandInfoResolver
- func NewDialer(opt *Options) func(context.Context, string, string) (net.Conn, error)
- func NewPushNotificationProcessor() push.NotificationProcessor
- func NewVoidPushNotificationProcessor() push.NotificationProcessor
- func SetLogLevel(logLevel internal.LogLevelT)
- func SetLogger(logger internal.Logging)
- func SetOTelRecorder(r OTelRecorder)
- func Version() string
- type ACLCatArgs
- type ACLCmdable
- type ACLLogCmd
- func (cmd *ACLLogCmd) Args() []interface{}
- func (cmd *ACLLogCmd) Clone() Cmder
- func (cmd *ACLLogCmd) Err() error
- func (cmd *ACLLogCmd) FullName() string
- func (cmd *ACLLogCmd) GetCmdType() CmdType
- func (cmd *ACLLogCmd) Name() string
- func (cmd *ACLLogCmd) Result() ([]*ACLLogEntry, error)
- func (cmd *ACLLogCmd) SetErr(e error)
- func (cmd *ACLLogCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *ACLLogCmd) SetStepCount(stepCount int8)
- func (cmd *ACLLogCmd) SetVal(val []*ACLLogEntry)
- func (cmd *ACLLogCmd) String() string
- func (cmd *ACLLogCmd) Val() []*ACLLogEntry
- type ACLLogEntry
- type AggregateBuilder
- func (b *AggregateBuilder) AddScores() *AggregateBuilder
- func (b *AggregateBuilder) Apply(field string, alias ...string) *AggregateBuilder
- func (b *AggregateBuilder) Dialect(version int) *AggregateBuilder
- func (b *AggregateBuilder) Filter(expr string) *AggregateBuilder
- func (b *AggregateBuilder) GroupBy(fields ...interface{}) *AggregateBuilder
- func (b *AggregateBuilder) Load(field string, alias ...string) *AggregateBuilder
- func (b *AggregateBuilder) LoadAll() *AggregateBuilder
- func (b *AggregateBuilder) Params(p map[string]interface{}) *AggregateBuilder
- func (b *AggregateBuilder) Reduce(fn SearchAggregator, args ...interface{}) *AggregateBuilder
- func (b *AggregateBuilder) ReduceAs(fn SearchAggregator, alias string, args ...interface{}) *AggregateBuilder
- func (b *AggregateBuilder) Run() (*FTAggregateResult, error)
- func (b *AggregateBuilder) Scorer(s string) *AggregateBuilder
- func (b *AggregateBuilder) SortBy(field string, asc bool) *AggregateBuilder
- func (b *AggregateBuilder) SortByMax(max int) *AggregateBuilder
- func (b *AggregateBuilder) Timeout(ms int) *AggregateBuilder
- func (b *AggregateBuilder) Verbatim() *AggregateBuilder
- func (b *AggregateBuilder) WithCursor(count, maxIdle int) *AggregateBuilder
- type AggregateCmd
- func (cmd *AggregateCmd) Args() []interface{}
- func (cmd *AggregateCmd) Clone() Cmder
- func (cmd *AggregateCmd) Err() error
- func (cmd *AggregateCmd) FullName() string
- func (cmd *AggregateCmd) GetCmdType() CmdType
- func (cmd *AggregateCmd) Name() string
- func (cmd *AggregateCmd) RawResult() (interface{}, error)
- func (cmd *AggregateCmd) RawVal() interface{}
- func (cmd *AggregateCmd) Result() (*FTAggregateResult, error)
- func (cmd *AggregateCmd) SetErr(e error)
- func (cmd *AggregateCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *AggregateCmd) SetStepCount(stepCount int8)
- func (cmd *AggregateCmd) SetVal(val *FTAggregateResult)
- func (cmd *AggregateCmd) String() string
- func (cmd *AggregateCmd) Val() *FTAggregateResult
- type AggregateQuery
- type AggregateRow
- type Aggregator
- type AliasBuilder
- type BFInfo
- type BFInfoCmd
- func (cmd *BFInfoCmd) Args() []interface{}
- func (cmd *BFInfoCmd) Clone() Cmder
- func (cmd *BFInfoCmd) Err() error
- func (cmd *BFInfoCmd) FullName() string
- func (cmd *BFInfoCmd) GetCmdType() CmdType
- func (cmd *BFInfoCmd) Name() string
- func (cmd *BFInfoCmd) Result() (BFInfo, error)
- func (cmd *BFInfoCmd) SetErr(e error)
- func (cmd *BFInfoCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *BFInfoCmd) SetStepCount(stepCount int8)
- func (cmd *BFInfoCmd) SetVal(val BFInfo)
- func (cmd *BFInfoCmd) String() string
- func (cmd *BFInfoCmd) Val() BFInfo
- type BFInsertOptions
- type BFReserveOptions
- type BitCount
- type BitMapCmdable
- type BoolCmd
- func (cmd *BoolCmd) Args() []interface{}
- func (cmd *BoolCmd) Clone() Cmder
- func (cmd *BoolCmd) Err() error
- func (cmd *BoolCmd) FullName() string
- func (cmd *BoolCmd) GetCmdType() CmdType
- func (cmd *BoolCmd) Name() string
- func (cmd *BoolCmd) Result() (bool, error)
- func (cmd *BoolCmd) SetErr(e error)
- func (cmd *BoolCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *BoolCmd) SetStepCount(stepCount int8)
- func (cmd *BoolCmd) SetVal(val bool)
- func (cmd *BoolCmd) String() string
- func (cmd *BoolCmd) Val() bool
- type BoolSliceCmd
- func (cmd *BoolSliceCmd) Args() []interface{}
- func (cmd *BoolSliceCmd) Clone() Cmder
- func (cmd *BoolSliceCmd) Err() error
- func (cmd *BoolSliceCmd) FullName() string
- func (cmd *BoolSliceCmd) GetCmdType() CmdType
- func (cmd *BoolSliceCmd) Name() string
- func (cmd *BoolSliceCmd) Result() ([]bool, error)
- func (cmd *BoolSliceCmd) SetErr(e error)
- func (cmd *BoolSliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *BoolSliceCmd) SetStepCount(stepCount int8)
- func (cmd *BoolSliceCmd) SetVal(val []bool)
- func (cmd *BoolSliceCmd) String() string
- func (cmd *BoolSliceCmd) Val() []bool
- type CFInfo
- type CFInfoCmd
- func (cmd *CFInfoCmd) Args() []interface{}
- func (cmd *CFInfoCmd) Clone() Cmder
- func (cmd *CFInfoCmd) Err() error
- func (cmd *CFInfoCmd) FullName() string
- func (cmd *CFInfoCmd) GetCmdType() CmdType
- func (cmd *CFInfoCmd) Name() string
- func (cmd *CFInfoCmd) Result() (CFInfo, error)
- func (cmd *CFInfoCmd) SetErr(e error)
- func (cmd *CFInfoCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *CFInfoCmd) SetStepCount(stepCount int8)
- func (cmd *CFInfoCmd) SetVal(val CFInfo)
- func (cmd *CFInfoCmd) String() string
- func (cmd *CFInfoCmd) Val() CFInfo
- type CFInsertOptions
- type CFReserveOptions
- type CMSInfo
- type CMSInfoCmd
- func (cmd *CMSInfoCmd) Args() []interface{}
- func (cmd *CMSInfoCmd) Clone() Cmder
- func (cmd *CMSInfoCmd) Err() error
- func (cmd *CMSInfoCmd) FullName() string
- func (cmd *CMSInfoCmd) GetCmdType() CmdType
- func (cmd *CMSInfoCmd) Name() string
- func (cmd *CMSInfoCmd) Result() (CMSInfo, error)
- func (cmd *CMSInfoCmd) SetErr(e error)
- func (cmd *CMSInfoCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *CMSInfoCmd) SetStepCount(stepCount int8)
- func (cmd *CMSInfoCmd) SetVal(val CMSInfo)
- func (cmd *CMSInfoCmd) String() string
- func (cmd *CMSInfoCmd) Val() CMSInfo
- type ChannelOption
- type Client
- func (c Client) ACLCat(ctx context.Context) *StringSliceCmd
- func (c Client) ACLCatArgs(ctx context.Context, options *ACLCatArgs) *StringSliceCmd
- func (c Client) ACLDelUser(ctx context.Context, username string) *IntCmd
- func (c Client) ACLDryRun(ctx context.Context, username string, command ...interface{}) *StringCmd
- func (c Client) ACLGenPass(ctx context.Context, bit int) *StringCmd
- func (c Client) ACLList(ctx context.Context) *StringSliceCmd
- func (c Client) ACLLog(ctx context.Context, count int64) *ACLLogCmd
- func (c Client) ACLLogReset(ctx context.Context) *StatusCmd
- func (c Client) ACLSetUser(ctx context.Context, username string, rules ...string) *StatusCmd
- func (c Client) ACLUsers(ctx context.Context) *StringSliceCmd
- func (c Client) ACLWhoAmI(ctx context.Context) *StringCmd
- func (c Client) Append(ctx context.Context, key, value string) *IntCmd
- func (c Client) BFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Client) BFCard(ctx context.Context, key string) *IntCmd
- func (c Client) BFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Client) BFInfo(ctx context.Context, key string) *BFInfoCmd
- func (c Client) BFInfoArg(ctx context.Context, key, option string) *BFInfoCmd
- func (c Client) BFInfoCapacity(ctx context.Context, key string) *BFInfoCmd
- func (c Client) BFInfoExpansion(ctx context.Context, key string) *BFInfoCmd
- func (c Client) BFInfoFilters(ctx context.Context, key string) *BFInfoCmd
- func (c Client) BFInfoItems(ctx context.Context, key string) *BFInfoCmd
- func (c Client) BFInfoSize(ctx context.Context, key string) *BFInfoCmd
- func (c Client) BFInsert(ctx context.Context, key string, options *BFInsertOptions, ...) *BoolSliceCmd
- func (c Client) BFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c Client) BFMAdd(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Client) BFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Client) BFReserve(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c Client) BFReserveExpansion(ctx context.Context, key string, errorRate float64, capacity, expansion int64) *StatusCmd
- func (c Client) BFReserveNonScaling(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c Client) BFReserveWithArgs(ctx context.Context, key string, options *BFReserveOptions) *StatusCmd
- func (c Client) BFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c Client) BLMPop(ctx context.Context, timeout time.Duration, direction string, count int64, ...) *KeyValuesCmd
- func (c Client) BLMove(ctx context.Context, source, destination, srcpos, destpos string, ...) *StringCmd
- func (c Client) BLPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c Client) BRPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c Client) BRPopLPush(ctx context.Context, source, destination string, timeout time.Duration) *StringCmddeprecated
- func (c Client) BZMPop(ctx context.Context, timeout time.Duration, order string, count int64, ...) *ZSliceWithKeyCmd
- func (c Client) BZPopMax(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c Client) BZPopMin(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c Client) BgRewriteAOF(ctx context.Context) *StatusCmd
- func (c Client) BgSave(ctx context.Context) *StatusCmd
- func (c Client) BitCount(ctx context.Context, key string, bitCount *BitCount) *IntCmd
- func (c Client) BitField(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c Client) BitFieldRO(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c Client) BitOpAnd(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Client) BitOpAndOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Client) BitOpDiff(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Client) BitOpDiff1(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Client) BitOpNot(ctx context.Context, destKey string, key string) *IntCmd
- func (c Client) BitOpOne(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Client) BitOpOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Client) BitOpXor(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Client) BitPos(ctx context.Context, key string, bit int64, pos ...int64) *IntCmd
- func (c Client) BitPosSpan(ctx context.Context, key string, bit int8, start, end int64, span string) *IntCmd
- func (c Client) CFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Client) CFAddNX(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Client) CFCount(ctx context.Context, key string, element interface{}) *IntCmd
- func (c Client) CFDel(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Client) CFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Client) CFInfo(ctx context.Context, key string) *CFInfoCmd
- func (c Client) CFInsert(ctx context.Context, key string, options *CFInsertOptions, ...) *BoolSliceCmd
- func (c Client) CFInsertNX(ctx context.Context, key string, options *CFInsertOptions, ...) *IntSliceCmd
- func (c Client) CFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c Client) CFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Client) CFReserve(ctx context.Context, key string, capacity int64) *StatusCmd
- func (c Client) CFReserveBucketSize(ctx context.Context, key string, capacity int64, bucketsize int64) *StatusCmd
- func (c Client) CFReserveExpansion(ctx context.Context, key string, capacity int64, expansion int64) *StatusCmd
- func (c Client) CFReserveMaxIterations(ctx context.Context, key string, capacity int64, maxiterations int64) *StatusCmd
- func (c Client) CFReserveWithArgs(ctx context.Context, key string, options *CFReserveOptions) *StatusCmd
- func (c Client) CFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c Client) CMSIncrBy(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Client) CMSInfo(ctx context.Context, key string) *CMSInfoCmd
- func (c Client) CMSInitByDim(ctx context.Context, key string, width, depth int64) *StatusCmd
- func (c Client) CMSInitByProb(ctx context.Context, key string, errorRate, probability float64) *StatusCmd
- func (c Client) CMSMerge(ctx context.Context, destKey string, sourceKeys ...string) *StatusCmd
- func (c Client) CMSMergeWithWeight(ctx context.Context, destKey string, sourceKeys map[string]int64) *StatusCmd
- func (c Client) CMSQuery(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Client) ClientGetName(ctx context.Context) *StringCmd
- func (c Client) ClientID(ctx context.Context) *IntCmd
- func (c Client) ClientInfo(ctx context.Context) *ClientInfoCmd
- func (c Client) ClientKill(ctx context.Context, ipPort string) *StatusCmd
- func (c Client) ClientKillByFilter(ctx context.Context, keys ...string) *IntCmd
- func (c Client) ClientList(ctx context.Context) *StringCmd
- func (c Client) ClientMaintNotifications(ctx context.Context, enabled bool, endpointType string) *StatusCmd
- func (c Client) ClientPause(ctx context.Context, dur time.Duration) *BoolCmd
- func (c Client) ClientUnblock(ctx context.Context, id int64) *IntCmd
- func (c Client) ClientUnblockWithError(ctx context.Context, id int64) *IntCmd
- func (c Client) ClientUnpause(ctx context.Context) *BoolCmd
- func (c Client) Close() error
- func (c Client) ClusterAddSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c Client) ClusterAddSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c Client) ClusterCountFailureReports(ctx context.Context, nodeID string) *IntCmd
- func (c Client) ClusterCountKeysInSlot(ctx context.Context, slot int) *IntCmd
- func (c Client) ClusterDelSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c Client) ClusterDelSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c Client) ClusterFailover(ctx context.Context) *StatusCmd
- func (c Client) ClusterForget(ctx context.Context, nodeID string) *StatusCmd
- func (c Client) ClusterGetKeysInSlot(ctx context.Context, slot int, count int) *StringSliceCmd
- func (c Client) ClusterInfo(ctx context.Context) *StringCmd
- func (c Client) ClusterKeySlot(ctx context.Context, key string) *IntCmd
- func (c Client) ClusterLinks(ctx context.Context) *ClusterLinksCmd
- func (c Client) ClusterMeet(ctx context.Context, host, port string) *StatusCmd
- func (c Client) ClusterMyID(ctx context.Context) *StringCmd
- func (c Client) ClusterMyShardID(ctx context.Context) *StringCmd
- func (c Client) ClusterNodes(ctx context.Context) *StringCmd
- func (c Client) ClusterReplicate(ctx context.Context, nodeID string) *StatusCmd
- func (c Client) ClusterResetHard(ctx context.Context) *StatusCmd
- func (c Client) ClusterResetSoft(ctx context.Context) *StatusCmd
- func (c Client) ClusterSaveConfig(ctx context.Context) *StatusCmd
- func (c Client) ClusterShards(ctx context.Context) *ClusterShardsCmd
- func (c Client) ClusterSlaves(ctx context.Context, nodeID string) *StringSliceCmddeprecated
- func (c Client) ClusterSlots(ctx context.Context) *ClusterSlotsCmddeprecated
- func (c Client) Command(ctx context.Context) *CommandsInfoCmd
- func (c Client) CommandGetKeys(ctx context.Context, commands ...interface{}) *StringSliceCmd
- func (c Client) CommandGetKeysAndFlags(ctx context.Context, commands ...interface{}) *KeyFlagsCmd
- func (c Client) CommandList(ctx context.Context, filter *FilterBy) *StringSliceCmd
- func (c Client) ConfigGet(ctx context.Context, parameter string) *MapStringStringCmd
- func (c Client) ConfigResetStat(ctx context.Context) *StatusCmd
- func (c Client) ConfigRewrite(ctx context.Context) *StatusCmd
- func (c Client) ConfigSet(ctx context.Context, parameter, value string) *StatusCmd
- func (c *Client) Conn() *Conn
- func (c Client) Copy(ctx context.Context, sourceKey, destKey string, db int, replace bool) *IntCmd
- func (c Client) DBSize(ctx context.Context) *IntCmd
- func (c Client) DebugObject(ctx context.Context, key string) *StringCmd
- func (c Client) Decr(ctx context.Context, key string) *IntCmd
- func (c Client) DecrBy(ctx context.Context, key string, decrement int64) *IntCmd
- func (c Client) Del(ctx context.Context, keys ...string) *IntCmd
- func (c Client) DelExArgs(ctx context.Context, key string, a DelExArgs) *IntCmd
- func (c Client) Digest(ctx context.Context, key string) *DigestCmd
- func (c Client) Do(ctx context.Context, args ...interface{}) *Cmd
- func (c Client) Dump(ctx context.Context, key string) *StringCmd
- func (c Client) Echo(ctx context.Context, message interface{}) *StringCmd
- func (c Client) Eval(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c Client) EvalRO(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c Client) EvalSha(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c Client) EvalShaRO(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c Client) Exists(ctx context.Context, keys ...string) *IntCmd
- func (c Client) Expire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Client) ExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c Client) ExpireGT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Client) ExpireLT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Client) ExpireNX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Client) ExpireTime(ctx context.Context, key string) *DurationCmd
- func (c Client) ExpireXX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Client) FCall(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Client) FCallRO(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Client) FCallRo(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Client) FTAggregate(ctx context.Context, index string, query string) *MapStringInterfaceCmd
- func (c Client) FTAggregateWithArgs(ctx context.Context, index string, query string, options *FTAggregateOptions) *AggregateCmd
- func (c Client) FTAliasAdd(ctx context.Context, index string, alias string) *StatusCmd
- func (c Client) FTAliasDel(ctx context.Context, alias string) *StatusCmd
- func (c Client) FTAliasUpdate(ctx context.Context, index string, alias string) *StatusCmd
- func (c Client) FTAlter(ctx context.Context, index string, skipInitialScan bool, ...) *StatusCmd
- func (c Client) FTConfigGet(ctx context.Context, option string) *MapMapStringInterfaceCmddeprecated
- func (c Client) FTConfigSet(ctx context.Context, option string, value interface{}) *StatusCmddeprecated
- func (c Client) FTCreate(ctx context.Context, index string, options *FTCreateOptions, ...) *StatusCmd
- func (c Client) FTCursorDel(ctx context.Context, index string, cursorId int) *StatusCmd
- func (c Client) FTCursorRead(ctx context.Context, index string, cursorId int, count int) *MapStringInterfaceCmd
- func (c Client) FTDictAdd(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c Client) FTDictDel(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c Client) FTDictDump(ctx context.Context, dict string) *StringSliceCmd
- func (c Client) FTDropIndex(ctx context.Context, index string) *StatusCmd
- func (c Client) FTDropIndexWithArgs(ctx context.Context, index string, options *FTDropIndexOptions) *StatusCmd
- func (c Client) FTExplain(ctx context.Context, index string, query string) *StringCmd
- func (c Client) FTExplainCli(ctx context.Context, key, path string) error
- func (c Client) FTExplainWithArgs(ctx context.Context, index string, query string, options *FTExplainOptions) *StringCmd
- func (c Client) FTHybrid(ctx context.Context, index string, searchExpr string, vectorField string, ...) *FTHybridCmd
- func (c Client) FTHybridWithArgs(ctx context.Context, index string, options *FTHybridOptions) *FTHybridCmd
- func (c Client) FTInfo(ctx context.Context, index string) *FTInfoCmd
- func (c Client) FTSearch(ctx context.Context, index string, query string) *FTSearchCmd
- func (c Client) FTSearchWithArgs(ctx context.Context, index string, query string, options *FTSearchOptions) *FTSearchCmd
- func (c Client) FTSpellCheck(ctx context.Context, index string, query string) *FTSpellCheckCmd
- func (c Client) FTSpellCheckWithArgs(ctx context.Context, index string, query string, options *FTSpellCheckOptions) *FTSpellCheckCmd
- func (c Client) FTSynDump(ctx context.Context, index string) *FTSynDumpCmd
- func (c Client) FTSynUpdate(ctx context.Context, index string, synGroupId interface{}, terms []interface{}) *StatusCmd
- func (c Client) FTSynUpdateWithArgs(ctx context.Context, index string, synGroupId interface{}, ...) *StatusCmd
- func (c Client) FTTagVals(ctx context.Context, index string, field string) *StringSliceCmd
- func (c Client) FT_List(ctx context.Context) *StringSliceCmd
- func (c Client) FlushAll(ctx context.Context) *StatusCmd
- func (c Client) FlushAllAsync(ctx context.Context) *StatusCmd
- func (c Client) FlushDB(ctx context.Context) *StatusCmd
- func (c Client) FlushDBAsync(ctx context.Context) *StatusCmd
- func (c Client) FunctionDelete(ctx context.Context, libName string) *StringCmd
- func (c Client) FunctionDump(ctx context.Context) *StringCmd
- func (c Client) FunctionFlush(ctx context.Context) *StringCmd
- func (c Client) FunctionFlushAsync(ctx context.Context) *StringCmd
- func (c Client) FunctionKill(ctx context.Context) *StringCmd
- func (c Client) FunctionList(ctx context.Context, q FunctionListQuery) *FunctionListCmd
- func (c Client) FunctionLoad(ctx context.Context, code string) *StringCmd
- func (c Client) FunctionLoadReplace(ctx context.Context, code string) *StringCmd
- func (c Client) FunctionRestore(ctx context.Context, libDump string) *StringCmd
- func (c Client) FunctionStats(ctx context.Context) *FunctionStatsCmd
- func (c Client) GeoAdd(ctx context.Context, key string, geoLocation ...*GeoLocation) *IntCmd
- func (c Client) GeoDist(ctx context.Context, key string, member1, member2, unit string) *FloatCmd
- func (c Client) GeoHash(ctx context.Context, key string, members ...string) *StringSliceCmd
- func (c Client) GeoPos(ctx context.Context, key string, members ...string) *GeoPosCmd
- func (c Client) GeoRadius(ctx context.Context, key string, longitude, latitude float64, ...) *GeoLocationCmddeprecated
- func (c Client) GeoRadiusByMember(ctx context.Context, key, member string, query *GeoRadiusQuery) *GeoLocationCmddeprecated
- func (c Client) GeoRadiusByMemberStore(ctx context.Context, key, member string, query *GeoRadiusQuery) *IntCmd
- func (c Client) GeoRadiusStore(ctx context.Context, key string, longitude, latitude float64, ...) *IntCmd
- func (c Client) GeoSearch(ctx context.Context, key string, q *GeoSearchQuery) *StringSliceCmd
- func (c Client) GeoSearchLocation(ctx context.Context, key string, q *GeoSearchLocationQuery) *GeoSearchLocationCmd
- func (c Client) GeoSearchStore(ctx context.Context, key, store string, q *GeoSearchStoreQuery) *IntCmd
- func (c Client) Get(ctx context.Context, key string) *StringCmd
- func (c Client) GetBit(ctx context.Context, key string, offset int64) *IntCmd
- func (c Client) GetDel(ctx context.Context, key string) *StringCmd
- func (c Client) GetEx(ctx context.Context, key string, expiration time.Duration) *StringCmd
- func (c *Client) GetMaintNotificationsManager() *maintnotifications.Manager
- func (c *Client) GetPushNotificationHandler(pushNotificationName string) push.NotificationHandler
- func (c Client) GetRange(ctx context.Context, key string, start, end int64) *StringCmd
- func (c Client) GetSet(ctx context.Context, key string, value interface{}) *StringCmddeprecated
- func (c Client) HDel(ctx context.Context, key string, fields ...string) *IntCmd
- func (c Client) HExists(ctx context.Context, key, field string) *BoolCmd
- func (c Client) HExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c Client) HExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c Client) HExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c Client) HExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Client) HExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c Client) HGet(ctx context.Context, key, field string) *StringCmd
- func (c Client) HGetAll(ctx context.Context, key string) *MapStringStringCmd
- func (c Client) HGetDel(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c Client) HGetEX(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c Client) HGetEXWithArgs(ctx context.Context, key string, options *HGetEXOptions, fields ...string) *StringSliceCmd
- func (c Client) HIncrBy(ctx context.Context, key, field string, incr int64) *IntCmd
- func (c Client) HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd
- func (c Client) HKeys(ctx context.Context, key string) *StringSliceCmd
- func (c Client) HLen(ctx context.Context, key string) *IntCmd
- func (c Client) HMGet(ctx context.Context, key string, fields ...string) *SliceCmd
- func (c Client) HMSet(ctx context.Context, key string, values ...interface{}) *BoolCmd
- func (c Client) HPExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c Client) HPExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c Client) HPExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c Client) HPExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Client) HPExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c Client) HPTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Client) HPersist(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Client) HRandField(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Client) HRandFieldWithValues(ctx context.Context, key string, count int) *KeyValueSliceCmd
- func (c Client) HScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Client) HScanNoValues(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Client) HSet(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Client) HSetEX(ctx context.Context, key string, fieldsAndValues ...string) *IntCmd
- func (c Client) HSetEXWithArgs(ctx context.Context, key string, options *HSetEXOptions, ...) *IntCmd
- func (c Client) HSetNX(ctx context.Context, key, field string, value interface{}) *BoolCmd
- func (c Client) HStrLen(ctx context.Context, key, field string) *IntCmd
- func (c Client) HTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Client) HVals(ctx context.Context, key string) *StringSliceCmd
- func (c *Client) HotKeysGet(ctx context.Context) *HotKeysCmd
- func (c *Client) HotKeysReset(ctx context.Context) *StatusCmd
- func (c *Client) HotKeysStart(ctx context.Context, args *HotKeysStartArgs) *StatusCmd
- func (c *Client) HotKeysStop(ctx context.Context) *StatusCmd
- func (c Client) Incr(ctx context.Context, key string) *IntCmd
- func (c Client) IncrBy(ctx context.Context, key string, value int64) *IntCmd
- func (c Client) IncrByFloat(ctx context.Context, key string, value float64) *FloatCmd
- func (c Client) Info(ctx context.Context, sections ...string) *StringCmd
- func (c Client) InfoMap(ctx context.Context, sections ...string) *InfoCmd
- func (c Client) JSONArrAppend(ctx context.Context, key, path string, values ...interface{}) *IntSliceCmd
- func (c Client) JSONArrIndex(ctx context.Context, key, path string, value ...interface{}) *IntSliceCmd
- func (c Client) JSONArrIndexWithArgs(ctx context.Context, key, path string, options *JSONArrIndexArgs, ...) *IntSliceCmd
- func (c Client) JSONArrInsert(ctx context.Context, key, path string, index int64, values ...interface{}) *IntSliceCmd
- func (c Client) JSONArrLen(ctx context.Context, key, path string) *IntSliceCmd
- func (c Client) JSONArrPop(ctx context.Context, key, path string, index int) *StringSliceCmd
- func (c Client) JSONArrTrim(ctx context.Context, key, path string) *IntSliceCmd
- func (c Client) JSONArrTrimWithArgs(ctx context.Context, key, path string, options *JSONArrTrimArgs) *IntSliceCmd
- func (c Client) JSONClear(ctx context.Context, key, path string) *IntCmd
- func (c Client) JSONDebugMemory(ctx context.Context, key, path string) *IntCmd
- func (c Client) JSONDel(ctx context.Context, key, path string) *IntCmd
- func (c Client) JSONForget(ctx context.Context, key, path string) *IntCmd
- func (c Client) JSONGet(ctx context.Context, key string, paths ...string) *JSONCmd
- func (c Client) JSONGetWithArgs(ctx context.Context, key string, options *JSONGetArgs, paths ...string) *JSONCmd
- func (c Client) JSONMGet(ctx context.Context, path string, keys ...string) *JSONSliceCmd
- func (c Client) JSONMSet(ctx context.Context, params ...interface{}) *StatusCmd
- func (c Client) JSONMSetArgs(ctx context.Context, docs []JSONSetArgs) *StatusCmd
- func (c Client) JSONMerge(ctx context.Context, key, path string, value string) *StatusCmd
- func (c Client) JSONNumIncrBy(ctx context.Context, key, path string, value float64) *JSONCmd
- func (c Client) JSONObjKeys(ctx context.Context, key, path string) *SliceCmd
- func (c Client) JSONObjLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Client) JSONSet(ctx context.Context, key, path string, value interface{}) *StatusCmd
- func (c Client) JSONSetMode(ctx context.Context, key, path string, value interface{}, mode string) *StatusCmd
- func (c Client) JSONStrAppend(ctx context.Context, key, path, value string) *IntPointerSliceCmd
- func (c Client) JSONStrLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Client) JSONToggle(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Client) JSONType(ctx context.Context, key, path string) *JSONSliceCmd
- func (c Client) Keys(ctx context.Context, pattern string) *StringSliceCmd
- func (c Client) LCS(ctx context.Context, q *LCSQuery) *LCSCmd
- func (c Client) LIndex(ctx context.Context, key string, index int64) *StringCmd
- func (c Client) LInsert(ctx context.Context, key, op string, pivot, value interface{}) *IntCmd
- func (c Client) LInsertAfter(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c Client) LInsertBefore(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c Client) LLen(ctx context.Context, key string) *IntCmd
- func (c Client) LMPop(ctx context.Context, direction string, count int64, keys ...string) *KeyValuesCmd
- func (c Client) LMove(ctx context.Context, source, destination, srcpos, destpos string) *StringCmd
- func (c Client) LPop(ctx context.Context, key string) *StringCmd
- func (c Client) LPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Client) LPos(ctx context.Context, key string, value string, a LPosArgs) *IntCmd
- func (c Client) LPosCount(ctx context.Context, key string, value string, count int64, a LPosArgs) *IntSliceCmd
- func (c Client) LPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Client) LPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Client) LRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c Client) LRem(ctx context.Context, key string, count int64, value interface{}) *IntCmd
- func (c Client) LSet(ctx context.Context, key string, index int64, value interface{}) *StatusCmd
- func (c Client) LTrim(ctx context.Context, key string, start, stop int64) *StatusCmd
- func (c Client) LastSave(ctx context.Context) *IntCmd
- func (c Client) Latency(ctx context.Context) *LatencyCmd
- func (c Client) LatencyReset(ctx context.Context, events ...interface{}) *StatusCmd
- func (c Client) MGet(ctx context.Context, keys ...string) *SliceCmd
- func (c Client) MSet(ctx context.Context, values ...interface{}) *StatusCmd
- func (c Client) MSetEX(ctx context.Context, args MSetEXArgs, values ...interface{}) *IntCmd
- func (c Client) MSetNX(ctx context.Context, values ...interface{}) *BoolCmd
- func (c Client) MemoryUsage(ctx context.Context, key string, samples ...int) *IntCmd
- func (c Client) Migrate(ctx context.Context, host, port, key string, db int, timeout time.Duration) *StatusCmd
- func (c Client) ModuleLoadex(ctx context.Context, conf *ModuleLoadexConfig) *StringCmd
- func (c Client) Monitor(ctx context.Context, ch chan string) *MonitorCmd
- func (c Client) Move(ctx context.Context, key string, db int) *BoolCmd
- func (c *Client) NewAggregateBuilder(ctx context.Context, index, query string) *AggregateBuilder
- func (c *Client) NewAliasBuilder(ctx context.Context, alias string) *AliasBuilder
- func (c *Client) NewCreateIndexBuilder(ctx context.Context, index string) *CreateIndexBuilder
- func (c *Client) NewCursorBuilder(ctx context.Context, index string, cursorId int64) *CursorBuilder
- func (c *Client) NewDictBuilder(ctx context.Context, dict string) *DictBuilder
- func (c *Client) NewDropIndexBuilder(ctx context.Context, index string) *DropIndexBuilder
- func (c *Client) NewExplainBuilder(ctx context.Context, index, query string) *ExplainBuilder
- func (c *Client) NewSearchBuilder(ctx context.Context, index, query string) *SearchBuilder
- func (c *Client) NewSearchInfoBuilder(ctx context.Context, index string) *FTInfoBuilder
- func (c *Client) NewSpellCheckBuilder(ctx context.Context, index, query string) *SpellCheckBuilder
- func (c *Client) NewSynUpdateBuilder(ctx context.Context, index string, groupId interface{}) *SynUpdateBuilder
- func (c *Client) NewTagValsBuilder(ctx context.Context, index, field string) *TagValsBuilder
- func (c *Client) NodeAddress() string
- func (c Client) ObjectEncoding(ctx context.Context, key string) *StringCmd
- func (c Client) ObjectFreq(ctx context.Context, key string) *IntCmd
- func (c Client) ObjectIdleTime(ctx context.Context, key string) *DurationCmd
- func (c Client) ObjectRefCount(ctx context.Context, key string) *IntCmd
- func (c *Client) Options() *Options
- func (c Client) PExpire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Client) PExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c Client) PExpireTime(ctx context.Context, key string) *DurationCmd
- func (c Client) PFAdd(ctx context.Context, key string, els ...interface{}) *IntCmd
- func (c Client) PFCount(ctx context.Context, keys ...string) *IntCmd
- func (c Client) PFMerge(ctx context.Context, dest string, keys ...string) *StatusCmd
- func (c *Client) PSubscribe(ctx context.Context, channels ...string) *PubSub
- func (c Client) PTTL(ctx context.Context, key string) *DurationCmd
- func (c Client) Persist(ctx context.Context, key string) *BoolCmd
- func (c Client) Ping(ctx context.Context) *StatusCmd
- func (c *Client) Pipeline() Pipeliner
- func (c *Client) Pipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c *Client) PoolStats() *PoolStats
- func (c *Client) Process(ctx context.Context, cmd Cmder) error
- func (c Client) PubSubChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c Client) PubSubNumPat(ctx context.Context) *IntCmd
- func (c Client) PubSubNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c Client) PubSubShardChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c Client) PubSubShardNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c Client) Publish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c Client) Quit(_ context.Context) *StatusCmddeprecated
- func (c Client) RPop(ctx context.Context, key string) *StringCmd
- func (c Client) RPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Client) RPopLPush(ctx context.Context, source, destination string) *StringCmddeprecated
- func (c Client) RPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Client) RPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Client) RandomKey(ctx context.Context) *StringCmd
- func (c Client) ReadOnly(ctx context.Context) *StatusCmd
- func (c Client) ReadWrite(ctx context.Context) *StatusCmd
- func (c *Client) RegisterPushNotificationHandler(pushNotificationName string, handler push.NotificationHandler, protected bool) error
- func (c Client) Rename(ctx context.Context, key, newkey string) *StatusCmd
- func (c Client) RenameNX(ctx context.Context, key, newkey string) *BoolCmd
- func (c Client) Restore(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c Client) RestoreReplace(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c Client) SAdd(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Client) SCard(ctx context.Context, key string) *IntCmd
- func (c Client) SDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Client) SDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Client) SInter(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Client) SInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c Client) SInterStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Client) SIsMember(ctx context.Context, key string, member interface{}) *BoolCmd
- func (c Client) SMIsMember(ctx context.Context, key string, members ...interface{}) *BoolSliceCmd
- func (c Client) SMembers(ctx context.Context, key string) *StringSliceCmd
- func (c Client) SMembersMap(ctx context.Context, key string) *StringStructMapCmd
- func (c Client) SMove(ctx context.Context, source, destination string, member interface{}) *BoolCmd
- func (c Client) SPop(ctx context.Context, key string) *StringCmd
- func (c Client) SPopN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c Client) SPublish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c Client) SRandMember(ctx context.Context, key string) *StringCmd
- func (c Client) SRandMemberN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c Client) SRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Client) SScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c *Client) SSubscribe(ctx context.Context, channels ...string) *PubSub
- func (c Client) SUnion(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Client) SUnionStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Client) Save(ctx context.Context) *StatusCmd
- func (c Client) Scan(ctx context.Context, cursor uint64, match string, count int64) *ScanCmd
- func (c Client) ScanType(ctx context.Context, cursor uint64, match string, count int64, keyType string) *ScanCmd
- func (c Client) ScriptExists(ctx context.Context, hashes ...string) *BoolSliceCmd
- func (c Client) ScriptFlush(ctx context.Context) *StatusCmd
- func (c Client) ScriptKill(ctx context.Context) *StatusCmd
- func (c Client) ScriptLoad(ctx context.Context, script string) *StringCmd
- func (c Client) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd
- func (c Client) SetArgs(ctx context.Context, key string, value interface{}, a SetArgs) *StatusCmd
- func (c Client) SetBit(ctx context.Context, key string, offset int64, value int) *IntCmd
- func (c Client) SetEx(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmddeprecated
- func (c Client) SetIFDEQ(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c Client) SetIFDEQGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c Client) SetIFDNE(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c Client) SetIFDNEGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c Client) SetIFEQ(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c Client) SetIFEQGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c Client) SetIFNE(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c Client) SetIFNEGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c Client) SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmddeprecated
- func (c Client) SetRange(ctx context.Context, key string, offset int64, value string) *IntCmd
- func (c Client) SetXX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmd
- func (c Client) Shutdown(ctx context.Context) *StatusCmd
- func (c Client) ShutdownNoSave(ctx context.Context) *StatusCmd
- func (c Client) ShutdownSave(ctx context.Context) *StatusCmd
- func (c Client) SlaveOf(ctx context.Context, host, port string) *StatusCmddeprecated
- func (c Client) SlowLogGet(ctx context.Context, num int64) *SlowLogCmd
- func (c Client) SlowLogLen(ctx context.Context) *IntCmd
- func (c Client) SlowLogReset(ctx context.Context) *StatusCmd
- func (c Client) Sort(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c Client) SortInterfaces(ctx context.Context, key string, sort *Sort) *SliceCmd
- func (c Client) SortRO(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c Client) SortStore(ctx context.Context, key, store string, sort *Sort) *IntCmd
- func (c Client) StrLen(ctx context.Context, key string) *IntCmd
- func (c Client) String() string
- func (c *Client) Subscribe(ctx context.Context, channels ...string) *PubSub
- func (c Client) Sync(_ context.Context)
- func (c Client) TDigestAdd(ctx context.Context, key string, elements ...float64) *StatusCmd
- func (c Client) TDigestByRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c Client) TDigestByRevRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c Client) TDigestCDF(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c Client) TDigestCreate(ctx context.Context, key string) *StatusCmd
- func (c Client) TDigestCreateWithCompression(ctx context.Context, key string, compression int64) *StatusCmd
- func (c Client) TDigestInfo(ctx context.Context, key string) *TDigestInfoCmd
- func (c Client) TDigestMax(ctx context.Context, key string) *FloatCmd
- func (c Client) TDigestMerge(ctx context.Context, destKey string, options *TDigestMergeOptions, ...) *StatusCmd
- func (c Client) TDigestMin(ctx context.Context, key string) *FloatCmd
- func (c Client) TDigestQuantile(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c Client) TDigestRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c Client) TDigestReset(ctx context.Context, key string) *StatusCmd
- func (c Client) TDigestRevRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c Client) TDigestTrimmedMean(ctx context.Context, key string, lowCutQuantile, highCutQuantile float64) *FloatCmd
- func (c Client) TSAdd(ctx context.Context, key string, timestamp interface{}, value float64) *IntCmd
- func (c Client) TSAddWithArgs(ctx context.Context, key string, timestamp interface{}, value float64, ...) *IntCmd
- func (c Client) TSAlter(ctx context.Context, key string, options *TSAlterOptions) *StatusCmd
- func (c Client) TSCreate(ctx context.Context, key string) *StatusCmd
- func (c Client) TSCreateRule(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c Client) TSCreateRuleWithArgs(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c Client) TSCreateWithArgs(ctx context.Context, key string, options *TSOptions) *StatusCmd
- func (c Client) TSDecrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c Client) TSDecrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c Client) TSDel(ctx context.Context, Key string, fromTimestamp int, toTimestamp int) *IntCmd
- func (c Client) TSDeleteRule(ctx context.Context, sourceKey string, destKey string) *StatusCmd
- func (c Client) TSGet(ctx context.Context, key string) *TSTimestampValueCmd
- func (c Client) TSGetWithArgs(ctx context.Context, key string, options *TSGetOptions) *TSTimestampValueCmd
- func (c Client) TSIncrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c Client) TSIncrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c Client) TSInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c Client) TSInfoWithArgs(ctx context.Context, key string, options *TSInfoOptions) *MapStringInterfaceCmd
- func (c Client) TSMAdd(ctx context.Context, ktvSlices [][]interface{}) *IntSliceCmd
- func (c Client) TSMGet(ctx context.Context, filters []string) *MapStringSliceInterfaceCmd
- func (c Client) TSMGetWithArgs(ctx context.Context, filters []string, options *TSMGetOptions) *MapStringSliceInterfaceCmd
- func (c Client) TSMRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c Client) TSMRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c Client) TSMRevRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c Client) TSMRevRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c Client) TSQueryIndex(ctx context.Context, filterExpr []string) *StringSliceCmd
- func (c Client) TSRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c Client) TSRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c Client) TSRevRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c Client) TSRevRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c Client) TTL(ctx context.Context, key string) *DurationCmd
- func (c Client) Time(ctx context.Context) *TimeCmd
- func (c Client) TopKAdd(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c Client) TopKCount(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Client) TopKIncrBy(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c Client) TopKInfo(ctx context.Context, key string) *TopKInfoCmd
- func (c Client) TopKList(ctx context.Context, key string) *StringSliceCmd
- func (c Client) TopKListWithCount(ctx context.Context, key string) *MapStringIntCmd
- func (c Client) TopKQuery(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Client) TopKReserve(ctx context.Context, key string, k int64) *StatusCmd
- func (c Client) TopKReserveWithOptions(ctx context.Context, key string, k int64, width, depth int64, decay float64) *StatusCmd
- func (c Client) Touch(ctx context.Context, keys ...string) *IntCmd
- func (c *Client) TxPipeline() Pipeliner
- func (c *Client) TxPipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c Client) Type(ctx context.Context, key string) *StatusCmd
- func (c Client) Unlink(ctx context.Context, keys ...string) *IntCmd
- func (c Client) VAdd(ctx context.Context, key, element string, val Vector) *BoolCmd
- func (c Client) VAddWithArgs(ctx context.Context, key, element string, val Vector, addArgs *VAddArgs) *BoolCmd
- func (c Client) VCard(ctx context.Context, key string) *IntCmd
- func (c Client) VClearAttributes(ctx context.Context, key, element string) *BoolCmd
- func (c Client) VDim(ctx context.Context, key string) *IntCmd
- func (c Client) VEmb(ctx context.Context, key, element string, raw bool) *SliceCmd
- func (c Client) VGetAttr(ctx context.Context, key, element string) *StringCmd
- func (c Client) VInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c Client) VLinks(ctx context.Context, key, element string) *StringSliceCmd
- func (c Client) VLinksWithScores(ctx context.Context, key, element string) *VectorScoreSliceCmd
- func (c Client) VRandMember(ctx context.Context, key string) *StringCmd
- func (c Client) VRandMemberCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Client) VRange(ctx context.Context, key, start, end string, count int64) *StringSliceCmd
- func (c Client) VRem(ctx context.Context, key, element string) *BoolCmd
- func (c Client) VSetAttr(ctx context.Context, key, element string, attr interface{}) *BoolCmd
- func (c Client) VSim(ctx context.Context, key string, val Vector) *StringSliceCmd
- func (c Client) VSimWithArgs(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *StringSliceCmd
- func (c Client) VSimWithArgsWithScores(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *VectorScoreSliceCmd
- func (c Client) VSimWithScores(ctx context.Context, key string, val Vector) *VectorScoreSliceCmd
- func (c Client) Wait(ctx context.Context, numSlaves int, timeout time.Duration) *IntCmd
- func (c Client) WaitAOF(ctx context.Context, numLocal, numSlaves int, timeout time.Duration) *IntCmd
- func (c *Client) Watch(ctx context.Context, fn func(*Tx) error, keys ...string) error
- func (c *Client) WithTimeout(timeout time.Duration) *Client
- func (c Client) XAck(ctx context.Context, stream, group string, ids ...string) *IntCmd
- func (c Client) XAckDel(ctx context.Context, stream string, group string, mode string, ids ...string) *SliceCmd
- func (c Client) XAdd(ctx context.Context, a *XAddArgs) *StringCmd
- func (c Client) XAutoClaim(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimCmd
- func (c Client) XAutoClaimJustID(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimJustIDCmd
- func (c Client) XCfgSet(ctx context.Context, a *XCfgSetArgs) *StatusCmd
- func (c Client) XClaim(ctx context.Context, a *XClaimArgs) *XMessageSliceCmd
- func (c Client) XClaimJustID(ctx context.Context, a *XClaimArgs) *StringSliceCmd
- func (c Client) XDel(ctx context.Context, stream string, ids ...string) *IntCmd
- func (c Client) XDelEx(ctx context.Context, stream string, mode string, ids ...string) *SliceCmd
- func (c Client) XGroupCreate(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Client) XGroupCreateConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c Client) XGroupCreateMkStream(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Client) XGroupDelConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c Client) XGroupDestroy(ctx context.Context, stream, group string) *IntCmd
- func (c Client) XGroupSetID(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Client) XInfoConsumers(ctx context.Context, key string, group string) *XInfoConsumersCmd
- func (c Client) XInfoGroups(ctx context.Context, key string) *XInfoGroupsCmd
- func (c Client) XInfoStream(ctx context.Context, key string) *XInfoStreamCmd
- func (c Client) XInfoStreamFull(ctx context.Context, key string, count int) *XInfoStreamFullCmd
- func (c Client) XLen(ctx context.Context, stream string) *IntCmd
- func (c Client) XPending(ctx context.Context, stream, group string) *XPendingCmd
- func (c Client) XPendingExt(ctx context.Context, a *XPendingExtArgs) *XPendingExtCmd
- func (c Client) XRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c Client) XRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c Client) XRead(ctx context.Context, a *XReadArgs) *XStreamSliceCmd
- func (c Client) XReadGroup(ctx context.Context, a *XReadGroupArgs) *XStreamSliceCmd
- func (c Client) XReadStreams(ctx context.Context, streams ...string) *XStreamSliceCmd
- func (c Client) XRevRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c Client) XRevRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c Client) XTrimMaxLen(ctx context.Context, key string, maxLen int64) *IntCmd
- func (c Client) XTrimMaxLenApprox(ctx context.Context, key string, maxLen, limit int64) *IntCmd
- func (c Client) XTrimMaxLenApproxMode(ctx context.Context, key string, maxLen, limit int64, mode string) *IntCmd
- func (c Client) XTrimMaxLenMode(ctx context.Context, key string, maxLen int64, mode string) *IntCmd
- func (c Client) XTrimMinID(ctx context.Context, key string, minID string) *IntCmd
- func (c Client) XTrimMinIDApprox(ctx context.Context, key string, minID string, limit int64) *IntCmd
- func (c Client) XTrimMinIDApproxMode(ctx context.Context, key string, minID string, limit int64, mode string) *IntCmd
- func (c Client) XTrimMinIDMode(ctx context.Context, key string, minID string, mode string) *IntCmd
- func (c Client) ZAdd(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Client) ZAddArgs(ctx context.Context, key string, args ZAddArgs) *IntCmd
- func (c Client) ZAddArgsIncr(ctx context.Context, key string, args ZAddArgs) *FloatCmd
- func (c Client) ZAddGT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Client) ZAddLT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Client) ZAddNX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Client) ZAddXX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Client) ZCard(ctx context.Context, key string) *IntCmd
- func (c Client) ZCount(ctx context.Context, key, min, max string) *IntCmd
- func (c Client) ZDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Client) ZDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Client) ZDiffWithScores(ctx context.Context, keys ...string) *ZSliceCmd
- func (c Client) ZIncrBy(ctx context.Context, key string, increment float64, member string) *FloatCmd
- func (c Client) ZInter(ctx context.Context, store *ZStore) *StringSliceCmd
- func (c Client) ZInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c Client) ZInterStore(ctx context.Context, destination string, store *ZStore) *IntCmd
- func (c Client) ZInterWithScores(ctx context.Context, store *ZStore) *ZSliceCmd
- func (c Client) ZLexCount(ctx context.Context, key, min, max string) *IntCmd
- func (c Client) ZMPop(ctx context.Context, order string, count int64, keys ...string) *ZSliceWithKeyCmd
- func (c Client) ZMScore(ctx context.Context, key string, members ...string) *FloatSliceCmd
- func (c Client) ZPopMax(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c Client) ZPopMin(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c Client) ZRandMember(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Client) ZRandMemberWithScores(ctx context.Context, key string, count int) *ZSliceCmd
- func (c Client) ZRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c Client) ZRangeArgs(ctx context.Context, z ZRangeArgs) *StringSliceCmd
- func (c Client) ZRangeArgsWithScores(ctx context.Context, z ZRangeArgs) *ZSliceCmd
- func (c Client) ZRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Client) ZRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Client) ZRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c Client) ZRangeStore(ctx context.Context, dst string, z ZRangeArgs) *IntCmd
- func (c Client) ZRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c Client) ZRank(ctx context.Context, key, member string) *IntCmd
- func (c Client) ZRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c Client) ZRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Client) ZRemRangeByLex(ctx context.Context, key, min, max string) *IntCmd
- func (c Client) ZRemRangeByRank(ctx context.Context, key string, start, stop int64) *IntCmd
- func (c Client) ZRemRangeByScore(ctx context.Context, key, min, max string) *IntCmd
- func (c Client) ZRevRange(ctx context.Context, key string, start, stop int64) *StringSliceCmddeprecated
- func (c Client) ZRevRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Client) ZRevRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Client) ZRevRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c Client) ZRevRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c Client) ZRevRank(ctx context.Context, key, member string) *IntCmd
- func (c Client) ZRevRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c Client) ZScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Client) ZScore(ctx context.Context, key, member string) *FloatCmd
- func (c Client) ZUnion(ctx context.Context, store ZStore) *StringSliceCmd
- func (c Client) ZUnionStore(ctx context.Context, dest string, store *ZStore) *IntCmd
- func (c Client) ZUnionWithScores(ctx context.Context, store ZStore) *ZSliceCmd
- type ClientFlags
- type ClientInfo
- type ClientInfoCmd
- func (cmd *ClientInfoCmd) Args() []interface{}
- func (cmd *ClientInfoCmd) Clone() Cmder
- func (cmd *ClientInfoCmd) Err() error
- func (cmd *ClientInfoCmd) FullName() string
- func (cmd *ClientInfoCmd) GetCmdType() CmdType
- func (cmd *ClientInfoCmd) Name() string
- func (cmd *ClientInfoCmd) Result() (*ClientInfo, error)
- func (cmd *ClientInfoCmd) SetErr(e error)
- func (cmd *ClientInfoCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *ClientInfoCmd) SetStepCount(stepCount int8)
- func (cmd *ClientInfoCmd) SetVal(val *ClientInfo)
- func (cmd *ClientInfoCmd) String() string
- func (cmd *ClientInfoCmd) Val() *ClientInfo
- type ClusterClient
- func (c ClusterClient) ACLCat(ctx context.Context) *StringSliceCmd
- func (c ClusterClient) ACLCatArgs(ctx context.Context, options *ACLCatArgs) *StringSliceCmd
- func (c ClusterClient) ACLDelUser(ctx context.Context, username string) *IntCmd
- func (c ClusterClient) ACLDryRun(ctx context.Context, username string, command ...interface{}) *StringCmd
- func (c ClusterClient) ACLGenPass(ctx context.Context, bit int) *StringCmd
- func (c ClusterClient) ACLList(ctx context.Context) *StringSliceCmd
- func (c ClusterClient) ACLLog(ctx context.Context, count int64) *ACLLogCmd
- func (c ClusterClient) ACLLogReset(ctx context.Context) *StatusCmd
- func (c ClusterClient) ACLSetUser(ctx context.Context, username string, rules ...string) *StatusCmd
- func (c ClusterClient) ACLUsers(ctx context.Context) *StringSliceCmd
- func (c ClusterClient) ACLWhoAmI(ctx context.Context) *StringCmd
- func (hs *ClusterClient) AddHook(hook Hook)
- func (c ClusterClient) Append(ctx context.Context, key, value string) *IntCmd
- func (c ClusterClient) BFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c ClusterClient) BFCard(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) BFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c ClusterClient) BFInfo(ctx context.Context, key string) *BFInfoCmd
- func (c ClusterClient) BFInfoArg(ctx context.Context, key, option string) *BFInfoCmd
- func (c ClusterClient) BFInfoCapacity(ctx context.Context, key string) *BFInfoCmd
- func (c ClusterClient) BFInfoExpansion(ctx context.Context, key string) *BFInfoCmd
- func (c ClusterClient) BFInfoFilters(ctx context.Context, key string) *BFInfoCmd
- func (c ClusterClient) BFInfoItems(ctx context.Context, key string) *BFInfoCmd
- func (c ClusterClient) BFInfoSize(ctx context.Context, key string) *BFInfoCmd
- func (c ClusterClient) BFInsert(ctx context.Context, key string, options *BFInsertOptions, ...) *BoolSliceCmd
- func (c ClusterClient) BFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c ClusterClient) BFMAdd(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c ClusterClient) BFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c ClusterClient) BFReserve(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c ClusterClient) BFReserveExpansion(ctx context.Context, key string, errorRate float64, capacity, expansion int64) *StatusCmd
- func (c ClusterClient) BFReserveNonScaling(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c ClusterClient) BFReserveWithArgs(ctx context.Context, key string, options *BFReserveOptions) *StatusCmd
- func (c ClusterClient) BFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c ClusterClient) BLMPop(ctx context.Context, timeout time.Duration, direction string, count int64, ...) *KeyValuesCmd
- func (c ClusterClient) BLMove(ctx context.Context, source, destination, srcpos, destpos string, ...) *StringCmd
- func (c ClusterClient) BLPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c ClusterClient) BRPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c ClusterClient) BRPopLPush(ctx context.Context, source, destination string, timeout time.Duration) *StringCmddeprecated
- func (c ClusterClient) BZMPop(ctx context.Context, timeout time.Duration, order string, count int64, ...) *ZSliceWithKeyCmd
- func (c ClusterClient) BZPopMax(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c ClusterClient) BZPopMin(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c ClusterClient) BgRewriteAOF(ctx context.Context) *StatusCmd
- func (c ClusterClient) BgSave(ctx context.Context) *StatusCmd
- func (c ClusterClient) BitCount(ctx context.Context, key string, bitCount *BitCount) *IntCmd
- func (c ClusterClient) BitField(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c ClusterClient) BitFieldRO(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c ClusterClient) BitOpAnd(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c ClusterClient) BitOpAndOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c ClusterClient) BitOpDiff(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c ClusterClient) BitOpDiff1(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c ClusterClient) BitOpNot(ctx context.Context, destKey string, key string) *IntCmd
- func (c ClusterClient) BitOpOne(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c ClusterClient) BitOpOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c ClusterClient) BitOpXor(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c ClusterClient) BitPos(ctx context.Context, key string, bit int64, pos ...int64) *IntCmd
- func (c ClusterClient) BitPosSpan(ctx context.Context, key string, bit int8, start, end int64, span string) *IntCmd
- func (c ClusterClient) CFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c ClusterClient) CFAddNX(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c ClusterClient) CFCount(ctx context.Context, key string, element interface{}) *IntCmd
- func (c ClusterClient) CFDel(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c ClusterClient) CFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c ClusterClient) CFInfo(ctx context.Context, key string) *CFInfoCmd
- func (c ClusterClient) CFInsert(ctx context.Context, key string, options *CFInsertOptions, ...) *BoolSliceCmd
- func (c ClusterClient) CFInsertNX(ctx context.Context, key string, options *CFInsertOptions, ...) *IntSliceCmd
- func (c ClusterClient) CFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c ClusterClient) CFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c ClusterClient) CFReserve(ctx context.Context, key string, capacity int64) *StatusCmd
- func (c ClusterClient) CFReserveBucketSize(ctx context.Context, key string, capacity int64, bucketsize int64) *StatusCmd
- func (c ClusterClient) CFReserveExpansion(ctx context.Context, key string, capacity int64, expansion int64) *StatusCmd
- func (c ClusterClient) CFReserveMaxIterations(ctx context.Context, key string, capacity int64, maxiterations int64) *StatusCmd
- func (c ClusterClient) CFReserveWithArgs(ctx context.Context, key string, options *CFReserveOptions) *StatusCmd
- func (c ClusterClient) CFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c ClusterClient) CMSIncrBy(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c ClusterClient) CMSInfo(ctx context.Context, key string) *CMSInfoCmd
- func (c ClusterClient) CMSInitByDim(ctx context.Context, key string, width, depth int64) *StatusCmd
- func (c ClusterClient) CMSInitByProb(ctx context.Context, key string, errorRate, probability float64) *StatusCmd
- func (c ClusterClient) CMSMerge(ctx context.Context, destKey string, sourceKeys ...string) *StatusCmd
- func (c ClusterClient) CMSMergeWithWeight(ctx context.Context, destKey string, sourceKeys map[string]int64) *StatusCmd
- func (c ClusterClient) CMSQuery(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c ClusterClient) ClientGetName(ctx context.Context) *StringCmd
- func (c ClusterClient) ClientID(ctx context.Context) *IntCmd
- func (c ClusterClient) ClientInfo(ctx context.Context) *ClientInfoCmd
- func (c ClusterClient) ClientKill(ctx context.Context, ipPort string) *StatusCmd
- func (c ClusterClient) ClientKillByFilter(ctx context.Context, keys ...string) *IntCmd
- func (c ClusterClient) ClientList(ctx context.Context) *StringCmd
- func (c ClusterClient) ClientMaintNotifications(ctx context.Context, enabled bool, endpointType string) *StatusCmd
- func (c ClusterClient) ClientPause(ctx context.Context, dur time.Duration) *BoolCmd
- func (c ClusterClient) ClientUnblock(ctx context.Context, id int64) *IntCmd
- func (c ClusterClient) ClientUnblockWithError(ctx context.Context, id int64) *IntCmd
- func (c ClusterClient) ClientUnpause(ctx context.Context) *BoolCmd
- func (c *ClusterClient) Close() error
- func (c ClusterClient) ClusterAddSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c ClusterClient) ClusterAddSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c ClusterClient) ClusterCountFailureReports(ctx context.Context, nodeID string) *IntCmd
- func (c ClusterClient) ClusterCountKeysInSlot(ctx context.Context, slot int) *IntCmd
- func (c ClusterClient) ClusterDelSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c ClusterClient) ClusterDelSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c ClusterClient) ClusterFailover(ctx context.Context) *StatusCmd
- func (c ClusterClient) ClusterForget(ctx context.Context, nodeID string) *StatusCmd
- func (c ClusterClient) ClusterGetKeysInSlot(ctx context.Context, slot int, count int) *StringSliceCmd
- func (c ClusterClient) ClusterInfo(ctx context.Context) *StringCmd
- func (c ClusterClient) ClusterKeySlot(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) ClusterLinks(ctx context.Context) *ClusterLinksCmd
- func (c ClusterClient) ClusterMeet(ctx context.Context, host, port string) *StatusCmd
- func (c ClusterClient) ClusterMyID(ctx context.Context) *StringCmd
- func (c ClusterClient) ClusterMyShardID(ctx context.Context) *StringCmd
- func (c ClusterClient) ClusterNodes(ctx context.Context) *StringCmd
- func (c ClusterClient) ClusterReplicate(ctx context.Context, nodeID string) *StatusCmd
- func (c ClusterClient) ClusterResetHard(ctx context.Context) *StatusCmd
- func (c ClusterClient) ClusterResetSoft(ctx context.Context) *StatusCmd
- func (c ClusterClient) ClusterSaveConfig(ctx context.Context) *StatusCmd
- func (c ClusterClient) ClusterShards(ctx context.Context) *ClusterShardsCmd
- func (c ClusterClient) ClusterSlaves(ctx context.Context, nodeID string) *StringSliceCmddeprecated
- func (c ClusterClient) ClusterSlots(ctx context.Context) *ClusterSlotsCmddeprecated
- func (c ClusterClient) Command(ctx context.Context) *CommandsInfoCmd
- func (c ClusterClient) CommandGetKeys(ctx context.Context, commands ...interface{}) *StringSliceCmd
- func (c ClusterClient) CommandGetKeysAndFlags(ctx context.Context, commands ...interface{}) *KeyFlagsCmd
- func (c ClusterClient) CommandList(ctx context.Context, filter *FilterBy) *StringSliceCmd
- func (c ClusterClient) ConfigGet(ctx context.Context, parameter string) *MapStringStringCmd
- func (c ClusterClient) ConfigResetStat(ctx context.Context) *StatusCmd
- func (c ClusterClient) ConfigRewrite(ctx context.Context) *StatusCmd
- func (c ClusterClient) ConfigSet(ctx context.Context, parameter, value string) *StatusCmd
- func (c ClusterClient) Copy(ctx context.Context, sourceKey, destKey string, db int, replace bool) *IntCmd
- func (c *ClusterClient) DBSize(ctx context.Context) *IntCmd
- func (c ClusterClient) DebugObject(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) Decr(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) DecrBy(ctx context.Context, key string, decrement int64) *IntCmd
- func (c ClusterClient) Del(ctx context.Context, keys ...string) *IntCmd
- func (c ClusterClient) DelExArgs(ctx context.Context, key string, a DelExArgs) *IntCmd
- func (c ClusterClient) Digest(ctx context.Context, key string) *DigestCmd
- func (c ClusterClient) Do(ctx context.Context, args ...interface{}) *Cmd
- func (c ClusterClient) Dump(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) Echo(ctx context.Context, message interface{}) *StringCmd
- func (c ClusterClient) Eval(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c ClusterClient) EvalRO(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c ClusterClient) EvalSha(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c ClusterClient) EvalShaRO(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c ClusterClient) Exists(ctx context.Context, keys ...string) *IntCmd
- func (c ClusterClient) Expire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c ClusterClient) ExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c ClusterClient) ExpireGT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c ClusterClient) ExpireLT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c ClusterClient) ExpireNX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c ClusterClient) ExpireTime(ctx context.Context, key string) *DurationCmd
- func (c ClusterClient) ExpireXX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c ClusterClient) FCall(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c ClusterClient) FCallRO(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c ClusterClient) FCallRo(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c ClusterClient) FTAggregate(ctx context.Context, index string, query string) *MapStringInterfaceCmd
- func (c ClusterClient) FTAggregateWithArgs(ctx context.Context, index string, query string, options *FTAggregateOptions) *AggregateCmd
- func (c ClusterClient) FTAliasAdd(ctx context.Context, index string, alias string) *StatusCmd
- func (c ClusterClient) FTAliasDel(ctx context.Context, alias string) *StatusCmd
- func (c ClusterClient) FTAliasUpdate(ctx context.Context, index string, alias string) *StatusCmd
- func (c ClusterClient) FTAlter(ctx context.Context, index string, skipInitialScan bool, ...) *StatusCmd
- func (c ClusterClient) FTConfigGet(ctx context.Context, option string) *MapMapStringInterfaceCmddeprecated
- func (c ClusterClient) FTConfigSet(ctx context.Context, option string, value interface{}) *StatusCmddeprecated
- func (c ClusterClient) FTCreate(ctx context.Context, index string, options *FTCreateOptions, ...) *StatusCmd
- func (c ClusterClient) FTCursorDel(ctx context.Context, index string, cursorId int) *StatusCmd
- func (c ClusterClient) FTCursorRead(ctx context.Context, index string, cursorId int, count int) *MapStringInterfaceCmd
- func (c ClusterClient) FTDictAdd(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c ClusterClient) FTDictDel(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c ClusterClient) FTDictDump(ctx context.Context, dict string) *StringSliceCmd
- func (c ClusterClient) FTDropIndex(ctx context.Context, index string) *StatusCmd
- func (c ClusterClient) FTDropIndexWithArgs(ctx context.Context, index string, options *FTDropIndexOptions) *StatusCmd
- func (c ClusterClient) FTExplain(ctx context.Context, index string, query string) *StringCmd
- func (c ClusterClient) FTExplainCli(ctx context.Context, key, path string) error
- func (c ClusterClient) FTExplainWithArgs(ctx context.Context, index string, query string, options *FTExplainOptions) *StringCmd
- func (c ClusterClient) FTHybrid(ctx context.Context, index string, searchExpr string, vectorField string, ...) *FTHybridCmd
- func (c ClusterClient) FTHybridWithArgs(ctx context.Context, index string, options *FTHybridOptions) *FTHybridCmd
- func (c ClusterClient) FTInfo(ctx context.Context, index string) *FTInfoCmd
- func (c ClusterClient) FTSearch(ctx context.Context, index string, query string) *FTSearchCmd
- func (c ClusterClient) FTSearchWithArgs(ctx context.Context, index string, query string, options *FTSearchOptions) *FTSearchCmd
- func (c ClusterClient) FTSpellCheck(ctx context.Context, index string, query string) *FTSpellCheckCmd
- func (c ClusterClient) FTSpellCheckWithArgs(ctx context.Context, index string, query string, options *FTSpellCheckOptions) *FTSpellCheckCmd
- func (c ClusterClient) FTSynDump(ctx context.Context, index string) *FTSynDumpCmd
- func (c ClusterClient) FTSynUpdate(ctx context.Context, index string, synGroupId interface{}, terms []interface{}) *StatusCmd
- func (c ClusterClient) FTSynUpdateWithArgs(ctx context.Context, index string, synGroupId interface{}, ...) *StatusCmd
- func (c ClusterClient) FTTagVals(ctx context.Context, index string, field string) *StringSliceCmd
- func (c ClusterClient) FT_List(ctx context.Context) *StringSliceCmd
- func (c ClusterClient) FlushAll(ctx context.Context) *StatusCmd
- func (c ClusterClient) FlushAllAsync(ctx context.Context) *StatusCmd
- func (c ClusterClient) FlushDB(ctx context.Context) *StatusCmd
- func (c ClusterClient) FlushDBAsync(ctx context.Context) *StatusCmd
- func (c *ClusterClient) ForEachMaster(ctx context.Context, fn func(ctx context.Context, client *Client) error) error
- func (c *ClusterClient) ForEachShard(ctx context.Context, fn func(ctx context.Context, client *Client) error) error
- func (c *ClusterClient) ForEachSlave(ctx context.Context, fn func(ctx context.Context, client *Client) error) error
- func (c ClusterClient) FunctionDelete(ctx context.Context, libName string) *StringCmd
- func (c ClusterClient) FunctionDump(ctx context.Context) *StringCmd
- func (c ClusterClient) FunctionFlush(ctx context.Context) *StringCmd
- func (c ClusterClient) FunctionFlushAsync(ctx context.Context) *StringCmd
- func (c ClusterClient) FunctionKill(ctx context.Context) *StringCmd
- func (c ClusterClient) FunctionList(ctx context.Context, q FunctionListQuery) *FunctionListCmd
- func (c ClusterClient) FunctionLoad(ctx context.Context, code string) *StringCmd
- func (c ClusterClient) FunctionLoadReplace(ctx context.Context, code string) *StringCmd
- func (c ClusterClient) FunctionRestore(ctx context.Context, libDump string) *StringCmd
- func (c ClusterClient) FunctionStats(ctx context.Context) *FunctionStatsCmd
- func (c ClusterClient) GeoAdd(ctx context.Context, key string, geoLocation ...*GeoLocation) *IntCmd
- func (c ClusterClient) GeoDist(ctx context.Context, key string, member1, member2, unit string) *FloatCmd
- func (c ClusterClient) GeoHash(ctx context.Context, key string, members ...string) *StringSliceCmd
- func (c ClusterClient) GeoPos(ctx context.Context, key string, members ...string) *GeoPosCmd
- func (c ClusterClient) GeoRadius(ctx context.Context, key string, longitude, latitude float64, ...) *GeoLocationCmddeprecated
- func (c ClusterClient) GeoRadiusByMember(ctx context.Context, key, member string, query *GeoRadiusQuery) *GeoLocationCmddeprecated
- func (c ClusterClient) GeoRadiusByMemberStore(ctx context.Context, key, member string, query *GeoRadiusQuery) *IntCmd
- func (c ClusterClient) GeoRadiusStore(ctx context.Context, key string, longitude, latitude float64, ...) *IntCmd
- func (c ClusterClient) GeoSearch(ctx context.Context, key string, q *GeoSearchQuery) *StringSliceCmd
- func (c ClusterClient) GeoSearchLocation(ctx context.Context, key string, q *GeoSearchLocationQuery) *GeoSearchLocationCmd
- func (c ClusterClient) GeoSearchStore(ctx context.Context, key, store string, q *GeoSearchStoreQuery) *IntCmd
- func (c ClusterClient) Get(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) GetBit(ctx context.Context, key string, offset int64) *IntCmd
- func (c ClusterClient) GetDel(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) GetEx(ctx context.Context, key string, expiration time.Duration) *StringCmd
- func (c ClusterClient) GetRange(ctx context.Context, key string, start, end int64) *StringCmd
- func (c *ClusterClient) GetResolver() *commandInfoResolver
- func (c ClusterClient) GetSet(ctx context.Context, key string, value interface{}) *StringCmddeprecated
- func (c ClusterClient) HDel(ctx context.Context, key string, fields ...string) *IntCmd
- func (c ClusterClient) HExists(ctx context.Context, key, field string) *BoolCmd
- func (c ClusterClient) HExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c ClusterClient) HExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c ClusterClient) HExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c ClusterClient) HExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c ClusterClient) HExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c ClusterClient) HGet(ctx context.Context, key, field string) *StringCmd
- func (c ClusterClient) HGetAll(ctx context.Context, key string) *MapStringStringCmd
- func (c ClusterClient) HGetDel(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c ClusterClient) HGetEX(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c ClusterClient) HGetEXWithArgs(ctx context.Context, key string, options *HGetEXOptions, fields ...string) *StringSliceCmd
- func (c ClusterClient) HIncrBy(ctx context.Context, key, field string, incr int64) *IntCmd
- func (c ClusterClient) HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd
- func (c ClusterClient) HKeys(ctx context.Context, key string) *StringSliceCmd
- func (c ClusterClient) HLen(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) HMGet(ctx context.Context, key string, fields ...string) *SliceCmd
- func (c ClusterClient) HMSet(ctx context.Context, key string, values ...interface{}) *BoolCmd
- func (c ClusterClient) HPExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c ClusterClient) HPExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c ClusterClient) HPExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c ClusterClient) HPExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c ClusterClient) HPExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c ClusterClient) HPTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c ClusterClient) HPersist(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c ClusterClient) HRandField(ctx context.Context, key string, count int) *StringSliceCmd
- func (c ClusterClient) HRandFieldWithValues(ctx context.Context, key string, count int) *KeyValueSliceCmd
- func (c ClusterClient) HScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c ClusterClient) HScanNoValues(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c ClusterClient) HSet(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c ClusterClient) HSetEX(ctx context.Context, key string, fieldsAndValues ...string) *IntCmd
- func (c ClusterClient) HSetEXWithArgs(ctx context.Context, key string, options *HSetEXOptions, ...) *IntCmd
- func (c ClusterClient) HSetNX(ctx context.Context, key, field string, value interface{}) *BoolCmd
- func (c ClusterClient) HStrLen(ctx context.Context, key, field string) *IntCmd
- func (c ClusterClient) HTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c ClusterClient) HVals(ctx context.Context, key string) *StringSliceCmd
- func (c ClusterClient) Incr(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) IncrBy(ctx context.Context, key string, value int64) *IntCmd
- func (c ClusterClient) IncrByFloat(ctx context.Context, key string, value float64) *FloatCmd
- func (c ClusterClient) Info(ctx context.Context, sections ...string) *StringCmd
- func (c ClusterClient) InfoMap(ctx context.Context, sections ...string) *InfoCmd
- func (c ClusterClient) JSONArrAppend(ctx context.Context, key, path string, values ...interface{}) *IntSliceCmd
- func (c ClusterClient) JSONArrIndex(ctx context.Context, key, path string, value ...interface{}) *IntSliceCmd
- func (c ClusterClient) JSONArrIndexWithArgs(ctx context.Context, key, path string, options *JSONArrIndexArgs, ...) *IntSliceCmd
- func (c ClusterClient) JSONArrInsert(ctx context.Context, key, path string, index int64, values ...interface{}) *IntSliceCmd
- func (c ClusterClient) JSONArrLen(ctx context.Context, key, path string) *IntSliceCmd
- func (c ClusterClient) JSONArrPop(ctx context.Context, key, path string, index int) *StringSliceCmd
- func (c ClusterClient) JSONArrTrim(ctx context.Context, key, path string) *IntSliceCmd
- func (c ClusterClient) JSONArrTrimWithArgs(ctx context.Context, key, path string, options *JSONArrTrimArgs) *IntSliceCmd
- func (c ClusterClient) JSONClear(ctx context.Context, key, path string) *IntCmd
- func (c ClusterClient) JSONDebugMemory(ctx context.Context, key, path string) *IntCmd
- func (c ClusterClient) JSONDel(ctx context.Context, key, path string) *IntCmd
- func (c ClusterClient) JSONForget(ctx context.Context, key, path string) *IntCmd
- func (c ClusterClient) JSONGet(ctx context.Context, key string, paths ...string) *JSONCmd
- func (c ClusterClient) JSONGetWithArgs(ctx context.Context, key string, options *JSONGetArgs, paths ...string) *JSONCmd
- func (c ClusterClient) JSONMGet(ctx context.Context, path string, keys ...string) *JSONSliceCmd
- func (c ClusterClient) JSONMSet(ctx context.Context, params ...interface{}) *StatusCmd
- func (c ClusterClient) JSONMSetArgs(ctx context.Context, docs []JSONSetArgs) *StatusCmd
- func (c ClusterClient) JSONMerge(ctx context.Context, key, path string, value string) *StatusCmd
- func (c ClusterClient) JSONNumIncrBy(ctx context.Context, key, path string, value float64) *JSONCmd
- func (c ClusterClient) JSONObjKeys(ctx context.Context, key, path string) *SliceCmd
- func (c ClusterClient) JSONObjLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c ClusterClient) JSONSet(ctx context.Context, key, path string, value interface{}) *StatusCmd
- func (c ClusterClient) JSONSetMode(ctx context.Context, key, path string, value interface{}, mode string) *StatusCmd
- func (c ClusterClient) JSONStrAppend(ctx context.Context, key, path, value string) *IntPointerSliceCmd
- func (c ClusterClient) JSONStrLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c ClusterClient) JSONToggle(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c ClusterClient) JSONType(ctx context.Context, key, path string) *JSONSliceCmd
- func (c ClusterClient) Keys(ctx context.Context, pattern string) *StringSliceCmd
- func (c ClusterClient) LCS(ctx context.Context, q *LCSQuery) *LCSCmd
- func (c ClusterClient) LIndex(ctx context.Context, key string, index int64) *StringCmd
- func (c ClusterClient) LInsert(ctx context.Context, key, op string, pivot, value interface{}) *IntCmd
- func (c ClusterClient) LInsertAfter(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c ClusterClient) LInsertBefore(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c ClusterClient) LLen(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) LMPop(ctx context.Context, direction string, count int64, keys ...string) *KeyValuesCmd
- func (c ClusterClient) LMove(ctx context.Context, source, destination, srcpos, destpos string) *StringCmd
- func (c ClusterClient) LPop(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) LPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c ClusterClient) LPos(ctx context.Context, key string, value string, a LPosArgs) *IntCmd
- func (c ClusterClient) LPosCount(ctx context.Context, key string, value string, count int64, a LPosArgs) *IntSliceCmd
- func (c ClusterClient) LPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c ClusterClient) LPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c ClusterClient) LRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c ClusterClient) LRem(ctx context.Context, key string, count int64, value interface{}) *IntCmd
- func (c ClusterClient) LSet(ctx context.Context, key string, index int64, value interface{}) *StatusCmd
- func (c ClusterClient) LTrim(ctx context.Context, key string, start, stop int64) *StatusCmd
- func (c ClusterClient) LastSave(ctx context.Context) *IntCmd
- func (c ClusterClient) Latency(ctx context.Context) *LatencyCmd
- func (c ClusterClient) LatencyReset(ctx context.Context, events ...interface{}) *StatusCmd
- func (c ClusterClient) MGet(ctx context.Context, keys ...string) *SliceCmd
- func (c ClusterClient) MSet(ctx context.Context, values ...interface{}) *StatusCmd
- func (c ClusterClient) MSetEX(ctx context.Context, args MSetEXArgs, values ...interface{}) *IntCmd
- func (c ClusterClient) MSetNX(ctx context.Context, values ...interface{}) *BoolCmd
- func (c *ClusterClient) MasterForKey(ctx context.Context, key string) (*Client, error)
- func (c ClusterClient) MemoryUsage(ctx context.Context, key string, samples ...int) *IntCmd
- func (c ClusterClient) Migrate(ctx context.Context, host, port, key string, db int, timeout time.Duration) *StatusCmd
- func (c ClusterClient) ModuleLoadex(ctx context.Context, conf *ModuleLoadexConfig) *StringCmd
- func (c ClusterClient) Monitor(ctx context.Context, ch chan string) *MonitorCmd
- func (c ClusterClient) Move(ctx context.Context, key string, db int) *BoolCmd
- func (c *ClusterClient) NewDynamicResolver() *commandInfoResolver
- func (c ClusterClient) ObjectEncoding(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) ObjectFreq(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) ObjectIdleTime(ctx context.Context, key string) *DurationCmd
- func (c ClusterClient) ObjectRefCount(ctx context.Context, key string) *IntCmd
- func (c *ClusterClient) OnNewNode(fn func(rdb *Client))
- func (c *ClusterClient) Options() *ClusterOptions
- func (c ClusterClient) PExpire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c ClusterClient) PExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c ClusterClient) PExpireTime(ctx context.Context, key string) *DurationCmd
- func (c ClusterClient) PFAdd(ctx context.Context, key string, els ...interface{}) *IntCmd
- func (c ClusterClient) PFCount(ctx context.Context, keys ...string) *IntCmd
- func (c ClusterClient) PFMerge(ctx context.Context, dest string, keys ...string) *StatusCmd
- func (c *ClusterClient) PSubscribe(ctx context.Context, channels ...string) *PubSub
- func (c ClusterClient) PTTL(ctx context.Context, key string) *DurationCmd
- func (c ClusterClient) Persist(ctx context.Context, key string) *BoolCmd
- func (c ClusterClient) Ping(ctx context.Context) *StatusCmd
- func (c *ClusterClient) Pipeline() Pipeliner
- func (c *ClusterClient) Pipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c *ClusterClient) PoolStats() *PoolStats
- func (c *ClusterClient) Process(ctx context.Context, cmd Cmder) error
- func (c ClusterClient) PubSubChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c ClusterClient) PubSubNumPat(ctx context.Context) *IntCmd
- func (c ClusterClient) PubSubNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c ClusterClient) PubSubShardChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c ClusterClient) PubSubShardNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c ClusterClient) Publish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c ClusterClient) Quit(_ context.Context) *StatusCmddeprecated
- func (c ClusterClient) RPop(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) RPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c ClusterClient) RPopLPush(ctx context.Context, source, destination string) *StringCmddeprecated
- func (c ClusterClient) RPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c ClusterClient) RPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c ClusterClient) RandomKey(ctx context.Context) *StringCmd
- func (c ClusterClient) ReadOnly(ctx context.Context) *StatusCmd
- func (c ClusterClient) ReadWrite(ctx context.Context) *StatusCmd
- func (c *ClusterClient) ReloadState(ctx context.Context)
- func (c ClusterClient) Rename(ctx context.Context, key, newkey string) *StatusCmd
- func (c ClusterClient) RenameNX(ctx context.Context, key, newkey string) *BoolCmd
- func (c ClusterClient) Restore(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c ClusterClient) RestoreReplace(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c ClusterClient) SAdd(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c ClusterClient) SCard(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) SDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c ClusterClient) SDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c ClusterClient) SInter(ctx context.Context, keys ...string) *StringSliceCmd
- func (c ClusterClient) SInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c ClusterClient) SInterStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c ClusterClient) SIsMember(ctx context.Context, key string, member interface{}) *BoolCmd
- func (c ClusterClient) SMIsMember(ctx context.Context, key string, members ...interface{}) *BoolSliceCmd
- func (c ClusterClient) SMembers(ctx context.Context, key string) *StringSliceCmd
- func (c ClusterClient) SMembersMap(ctx context.Context, key string) *StringStructMapCmd
- func (c ClusterClient) SMove(ctx context.Context, source, destination string, member interface{}) *BoolCmd
- func (c ClusterClient) SPop(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) SPopN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c ClusterClient) SPublish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c ClusterClient) SRandMember(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) SRandMemberN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c ClusterClient) SRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c ClusterClient) SScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c *ClusterClient) SSubscribe(ctx context.Context, channels ...string) *PubSub
- func (c ClusterClient) SUnion(ctx context.Context, keys ...string) *StringSliceCmd
- func (c ClusterClient) SUnionStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c ClusterClient) Save(ctx context.Context) *StatusCmd
- func (c ClusterClient) Scan(ctx context.Context, cursor uint64, match string, count int64) *ScanCmd
- func (c ClusterClient) ScanType(ctx context.Context, cursor uint64, match string, count int64, keyType string) *ScanCmd
- func (c *ClusterClient) ScriptExists(ctx context.Context, hashes ...string) *BoolSliceCmd
- func (c *ClusterClient) ScriptFlush(ctx context.Context) *StatusCmd
- func (c ClusterClient) ScriptKill(ctx context.Context) *StatusCmd
- func (c *ClusterClient) ScriptLoad(ctx context.Context, script string) *StringCmd
- func (c ClusterClient) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd
- func (c ClusterClient) SetArgs(ctx context.Context, key string, value interface{}, a SetArgs) *StatusCmd
- func (c ClusterClient) SetBit(ctx context.Context, key string, offset int64, value int) *IntCmd
- func (c *ClusterClient) SetCommandInfoResolver(cmdInfoResolver *commandInfoResolver)
- func (c ClusterClient) SetEx(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmddeprecated
- func (c ClusterClient) SetIFDEQ(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c ClusterClient) SetIFDEQGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c ClusterClient) SetIFDNE(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c ClusterClient) SetIFDNEGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c ClusterClient) SetIFEQ(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c ClusterClient) SetIFEQGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c ClusterClient) SetIFNE(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c ClusterClient) SetIFNEGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c ClusterClient) SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmddeprecated
- func (c ClusterClient) SetRange(ctx context.Context, key string, offset int64, value string) *IntCmd
- func (c ClusterClient) SetXX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmd
- func (c ClusterClient) Shutdown(ctx context.Context) *StatusCmd
- func (c ClusterClient) ShutdownNoSave(ctx context.Context) *StatusCmd
- func (c ClusterClient) ShutdownSave(ctx context.Context) *StatusCmd
- func (c *ClusterClient) SlaveForKey(ctx context.Context, key string) (*Client, error)
- func (c ClusterClient) SlaveOf(ctx context.Context, host, port string) *StatusCmddeprecated
- func (c ClusterClient) SlowLogGet(ctx context.Context, num int64) *SlowLogCmd
- func (c ClusterClient) SlowLogLen(ctx context.Context) *IntCmd
- func (c ClusterClient) SlowLogReset(ctx context.Context) *StatusCmd
- func (c ClusterClient) Sort(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c ClusterClient) SortInterfaces(ctx context.Context, key string, sort *Sort) *SliceCmd
- func (c ClusterClient) SortRO(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c ClusterClient) SortStore(ctx context.Context, key, store string, sort *Sort) *IntCmd
- func (c ClusterClient) StrLen(ctx context.Context, key string) *IntCmd
- func (c *ClusterClient) Subscribe(ctx context.Context, channels ...string) *PubSub
- func (c ClusterClient) Sync(_ context.Context)
- func (c ClusterClient) TDigestAdd(ctx context.Context, key string, elements ...float64) *StatusCmd
- func (c ClusterClient) TDigestByRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c ClusterClient) TDigestByRevRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c ClusterClient) TDigestCDF(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c ClusterClient) TDigestCreate(ctx context.Context, key string) *StatusCmd
- func (c ClusterClient) TDigestCreateWithCompression(ctx context.Context, key string, compression int64) *StatusCmd
- func (c ClusterClient) TDigestInfo(ctx context.Context, key string) *TDigestInfoCmd
- func (c ClusterClient) TDigestMax(ctx context.Context, key string) *FloatCmd
- func (c ClusterClient) TDigestMerge(ctx context.Context, destKey string, options *TDigestMergeOptions, ...) *StatusCmd
- func (c ClusterClient) TDigestMin(ctx context.Context, key string) *FloatCmd
- func (c ClusterClient) TDigestQuantile(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c ClusterClient) TDigestRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c ClusterClient) TDigestReset(ctx context.Context, key string) *StatusCmd
- func (c ClusterClient) TDigestRevRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c ClusterClient) TDigestTrimmedMean(ctx context.Context, key string, lowCutQuantile, highCutQuantile float64) *FloatCmd
- func (c ClusterClient) TSAdd(ctx context.Context, key string, timestamp interface{}, value float64) *IntCmd
- func (c ClusterClient) TSAddWithArgs(ctx context.Context, key string, timestamp interface{}, value float64, ...) *IntCmd
- func (c ClusterClient) TSAlter(ctx context.Context, key string, options *TSAlterOptions) *StatusCmd
- func (c ClusterClient) TSCreate(ctx context.Context, key string) *StatusCmd
- func (c ClusterClient) TSCreateRule(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c ClusterClient) TSCreateRuleWithArgs(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c ClusterClient) TSCreateWithArgs(ctx context.Context, key string, options *TSOptions) *StatusCmd
- func (c ClusterClient) TSDecrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c ClusterClient) TSDecrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c ClusterClient) TSDel(ctx context.Context, Key string, fromTimestamp int, toTimestamp int) *IntCmd
- func (c ClusterClient) TSDeleteRule(ctx context.Context, sourceKey string, destKey string) *StatusCmd
- func (c ClusterClient) TSGet(ctx context.Context, key string) *TSTimestampValueCmd
- func (c ClusterClient) TSGetWithArgs(ctx context.Context, key string, options *TSGetOptions) *TSTimestampValueCmd
- func (c ClusterClient) TSIncrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c ClusterClient) TSIncrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c ClusterClient) TSInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c ClusterClient) TSInfoWithArgs(ctx context.Context, key string, options *TSInfoOptions) *MapStringInterfaceCmd
- func (c ClusterClient) TSMAdd(ctx context.Context, ktvSlices [][]interface{}) *IntSliceCmd
- func (c ClusterClient) TSMGet(ctx context.Context, filters []string) *MapStringSliceInterfaceCmd
- func (c ClusterClient) TSMGetWithArgs(ctx context.Context, filters []string, options *TSMGetOptions) *MapStringSliceInterfaceCmd
- func (c ClusterClient) TSMRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c ClusterClient) TSMRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c ClusterClient) TSMRevRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c ClusterClient) TSMRevRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c ClusterClient) TSQueryIndex(ctx context.Context, filterExpr []string) *StringSliceCmd
- func (c ClusterClient) TSRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c ClusterClient) TSRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c ClusterClient) TSRevRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c ClusterClient) TSRevRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c ClusterClient) TTL(ctx context.Context, key string) *DurationCmd
- func (c ClusterClient) Time(ctx context.Context) *TimeCmd
- func (c ClusterClient) TopKAdd(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c ClusterClient) TopKCount(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c ClusterClient) TopKIncrBy(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c ClusterClient) TopKInfo(ctx context.Context, key string) *TopKInfoCmd
- func (c ClusterClient) TopKList(ctx context.Context, key string) *StringSliceCmd
- func (c ClusterClient) TopKListWithCount(ctx context.Context, key string) *MapStringIntCmd
- func (c ClusterClient) TopKQuery(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c ClusterClient) TopKReserve(ctx context.Context, key string, k int64) *StatusCmd
- func (c ClusterClient) TopKReserveWithOptions(ctx context.Context, key string, k int64, width, depth int64, decay float64) *StatusCmd
- func (c ClusterClient) Touch(ctx context.Context, keys ...string) *IntCmd
- func (c *ClusterClient) TxPipeline() Pipeliner
- func (c *ClusterClient) TxPipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c ClusterClient) Type(ctx context.Context, key string) *StatusCmd
- func (c ClusterClient) Unlink(ctx context.Context, keys ...string) *IntCmd
- func (c ClusterClient) VAdd(ctx context.Context, key, element string, val Vector) *BoolCmd
- func (c ClusterClient) VAddWithArgs(ctx context.Context, key, element string, val Vector, addArgs *VAddArgs) *BoolCmd
- func (c ClusterClient) VCard(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) VClearAttributes(ctx context.Context, key, element string) *BoolCmd
- func (c ClusterClient) VDim(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) VEmb(ctx context.Context, key, element string, raw bool) *SliceCmd
- func (c ClusterClient) VGetAttr(ctx context.Context, key, element string) *StringCmd
- func (c ClusterClient) VInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c ClusterClient) VLinks(ctx context.Context, key, element string) *StringSliceCmd
- func (c ClusterClient) VLinksWithScores(ctx context.Context, key, element string) *VectorScoreSliceCmd
- func (c ClusterClient) VRandMember(ctx context.Context, key string) *StringCmd
- func (c ClusterClient) VRandMemberCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c ClusterClient) VRange(ctx context.Context, key, start, end string, count int64) *StringSliceCmd
- func (c ClusterClient) VRem(ctx context.Context, key, element string) *BoolCmd
- func (c ClusterClient) VSetAttr(ctx context.Context, key, element string, attr interface{}) *BoolCmd
- func (c ClusterClient) VSim(ctx context.Context, key string, val Vector) *StringSliceCmd
- func (c ClusterClient) VSimWithArgs(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *StringSliceCmd
- func (c ClusterClient) VSimWithArgsWithScores(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *VectorScoreSliceCmd
- func (c ClusterClient) VSimWithScores(ctx context.Context, key string, val Vector) *VectorScoreSliceCmd
- func (c ClusterClient) Wait(ctx context.Context, numSlaves int, timeout time.Duration) *IntCmd
- func (c ClusterClient) WaitAOF(ctx context.Context, numLocal, numSlaves int, timeout time.Duration) *IntCmd
- func (c *ClusterClient) Watch(ctx context.Context, fn func(*Tx) error, keys ...string) error
- func (c ClusterClient) XAck(ctx context.Context, stream, group string, ids ...string) *IntCmd
- func (c ClusterClient) XAckDel(ctx context.Context, stream string, group string, mode string, ids ...string) *SliceCmd
- func (c ClusterClient) XAdd(ctx context.Context, a *XAddArgs) *StringCmd
- func (c ClusterClient) XAutoClaim(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimCmd
- func (c ClusterClient) XAutoClaimJustID(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimJustIDCmd
- func (c ClusterClient) XCfgSet(ctx context.Context, a *XCfgSetArgs) *StatusCmd
- func (c ClusterClient) XClaim(ctx context.Context, a *XClaimArgs) *XMessageSliceCmd
- func (c ClusterClient) XClaimJustID(ctx context.Context, a *XClaimArgs) *StringSliceCmd
- func (c ClusterClient) XDel(ctx context.Context, stream string, ids ...string) *IntCmd
- func (c ClusterClient) XDelEx(ctx context.Context, stream string, mode string, ids ...string) *SliceCmd
- func (c ClusterClient) XGroupCreate(ctx context.Context, stream, group, start string) *StatusCmd
- func (c ClusterClient) XGroupCreateConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c ClusterClient) XGroupCreateMkStream(ctx context.Context, stream, group, start string) *StatusCmd
- func (c ClusterClient) XGroupDelConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c ClusterClient) XGroupDestroy(ctx context.Context, stream, group string) *IntCmd
- func (c ClusterClient) XGroupSetID(ctx context.Context, stream, group, start string) *StatusCmd
- func (c ClusterClient) XInfoConsumers(ctx context.Context, key string, group string) *XInfoConsumersCmd
- func (c ClusterClient) XInfoGroups(ctx context.Context, key string) *XInfoGroupsCmd
- func (c ClusterClient) XInfoStream(ctx context.Context, key string) *XInfoStreamCmd
- func (c ClusterClient) XInfoStreamFull(ctx context.Context, key string, count int) *XInfoStreamFullCmd
- func (c ClusterClient) XLen(ctx context.Context, stream string) *IntCmd
- func (c ClusterClient) XPending(ctx context.Context, stream, group string) *XPendingCmd
- func (c ClusterClient) XPendingExt(ctx context.Context, a *XPendingExtArgs) *XPendingExtCmd
- func (c ClusterClient) XRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c ClusterClient) XRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c ClusterClient) XRead(ctx context.Context, a *XReadArgs) *XStreamSliceCmd
- func (c ClusterClient) XReadGroup(ctx context.Context, a *XReadGroupArgs) *XStreamSliceCmd
- func (c ClusterClient) XReadStreams(ctx context.Context, streams ...string) *XStreamSliceCmd
- func (c ClusterClient) XRevRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c ClusterClient) XRevRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c ClusterClient) XTrimMaxLen(ctx context.Context, key string, maxLen int64) *IntCmd
- func (c ClusterClient) XTrimMaxLenApprox(ctx context.Context, key string, maxLen, limit int64) *IntCmd
- func (c ClusterClient) XTrimMaxLenApproxMode(ctx context.Context, key string, maxLen, limit int64, mode string) *IntCmd
- func (c ClusterClient) XTrimMaxLenMode(ctx context.Context, key string, maxLen int64, mode string) *IntCmd
- func (c ClusterClient) XTrimMinID(ctx context.Context, key string, minID string) *IntCmd
- func (c ClusterClient) XTrimMinIDApprox(ctx context.Context, key string, minID string, limit int64) *IntCmd
- func (c ClusterClient) XTrimMinIDApproxMode(ctx context.Context, key string, minID string, limit int64, mode string) *IntCmd
- func (c ClusterClient) XTrimMinIDMode(ctx context.Context, key string, minID string, mode string) *IntCmd
- func (c ClusterClient) ZAdd(ctx context.Context, key string, members ...Z) *IntCmd
- func (c ClusterClient) ZAddArgs(ctx context.Context, key string, args ZAddArgs) *IntCmd
- func (c ClusterClient) ZAddArgsIncr(ctx context.Context, key string, args ZAddArgs) *FloatCmd
- func (c ClusterClient) ZAddGT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c ClusterClient) ZAddLT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c ClusterClient) ZAddNX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c ClusterClient) ZAddXX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c ClusterClient) ZCard(ctx context.Context, key string) *IntCmd
- func (c ClusterClient) ZCount(ctx context.Context, key, min, max string) *IntCmd
- func (c ClusterClient) ZDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c ClusterClient) ZDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c ClusterClient) ZDiffWithScores(ctx context.Context, keys ...string) *ZSliceCmd
- func (c ClusterClient) ZIncrBy(ctx context.Context, key string, increment float64, member string) *FloatCmd
- func (c ClusterClient) ZInter(ctx context.Context, store *ZStore) *StringSliceCmd
- func (c ClusterClient) ZInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c ClusterClient) ZInterStore(ctx context.Context, destination string, store *ZStore) *IntCmd
- func (c ClusterClient) ZInterWithScores(ctx context.Context, store *ZStore) *ZSliceCmd
- func (c ClusterClient) ZLexCount(ctx context.Context, key, min, max string) *IntCmd
- func (c ClusterClient) ZMPop(ctx context.Context, order string, count int64, keys ...string) *ZSliceWithKeyCmd
- func (c ClusterClient) ZMScore(ctx context.Context, key string, members ...string) *FloatSliceCmd
- func (c ClusterClient) ZPopMax(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c ClusterClient) ZPopMin(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c ClusterClient) ZRandMember(ctx context.Context, key string, count int) *StringSliceCmd
- func (c ClusterClient) ZRandMemberWithScores(ctx context.Context, key string, count int) *ZSliceCmd
- func (c ClusterClient) ZRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c ClusterClient) ZRangeArgs(ctx context.Context, z ZRangeArgs) *StringSliceCmd
- func (c ClusterClient) ZRangeArgsWithScores(ctx context.Context, z ZRangeArgs) *ZSliceCmd
- func (c ClusterClient) ZRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c ClusterClient) ZRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c ClusterClient) ZRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c ClusterClient) ZRangeStore(ctx context.Context, dst string, z ZRangeArgs) *IntCmd
- func (c ClusterClient) ZRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c ClusterClient) ZRank(ctx context.Context, key, member string) *IntCmd
- func (c ClusterClient) ZRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c ClusterClient) ZRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c ClusterClient) ZRemRangeByLex(ctx context.Context, key, min, max string) *IntCmd
- func (c ClusterClient) ZRemRangeByRank(ctx context.Context, key string, start, stop int64) *IntCmd
- func (c ClusterClient) ZRemRangeByScore(ctx context.Context, key, min, max string) *IntCmd
- func (c ClusterClient) ZRevRange(ctx context.Context, key string, start, stop int64) *StringSliceCmddeprecated
- func (c ClusterClient) ZRevRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c ClusterClient) ZRevRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c ClusterClient) ZRevRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c ClusterClient) ZRevRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c ClusterClient) ZRevRank(ctx context.Context, key, member string) *IntCmd
- func (c ClusterClient) ZRevRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c ClusterClient) ZScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c ClusterClient) ZScore(ctx context.Context, key, member string) *FloatCmd
- func (c ClusterClient) ZUnion(ctx context.Context, store ZStore) *StringSliceCmd
- func (c ClusterClient) ZUnionStore(ctx context.Context, dest string, store *ZStore) *IntCmd
- func (c ClusterClient) ZUnionWithScores(ctx context.Context, store ZStore) *ZSliceCmd
- type ClusterCmdable
- type ClusterLink
- type ClusterLinksCmd
- func (cmd *ClusterLinksCmd) Args() []interface{}
- func (cmd *ClusterLinksCmd) Clone() Cmder
- func (cmd *ClusterLinksCmd) Err() error
- func (cmd *ClusterLinksCmd) FullName() string
- func (cmd *ClusterLinksCmd) GetCmdType() CmdType
- func (cmd *ClusterLinksCmd) Name() string
- func (cmd *ClusterLinksCmd) Result() ([]ClusterLink, error)
- func (cmd *ClusterLinksCmd) SetErr(e error)
- func (cmd *ClusterLinksCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *ClusterLinksCmd) SetStepCount(stepCount int8)
- func (cmd *ClusterLinksCmd) SetVal(val []ClusterLink)
- func (cmd *ClusterLinksCmd) String() string
- func (cmd *ClusterLinksCmd) Val() []ClusterLink
- type ClusterNode
- type ClusterOptions
- type ClusterShard
- type ClusterShardsCmd
- func (cmd *ClusterShardsCmd) Args() []interface{}
- func (cmd *ClusterShardsCmd) Clone() Cmder
- func (cmd *ClusterShardsCmd) Err() error
- func (cmd *ClusterShardsCmd) FullName() string
- func (cmd *ClusterShardsCmd) GetCmdType() CmdType
- func (cmd *ClusterShardsCmd) Name() string
- func (cmd *ClusterShardsCmd) Result() ([]ClusterShard, error)
- func (cmd *ClusterShardsCmd) SetErr(e error)
- func (cmd *ClusterShardsCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *ClusterShardsCmd) SetStepCount(stepCount int8)
- func (cmd *ClusterShardsCmd) SetVal(val []ClusterShard)
- func (cmd *ClusterShardsCmd) String() string
- func (cmd *ClusterShardsCmd) Val() []ClusterShard
- type ClusterSlot
- type ClusterSlotsCmd
- func (cmd *ClusterSlotsCmd) Args() []interface{}
- func (cmd *ClusterSlotsCmd) Clone() Cmder
- func (cmd *ClusterSlotsCmd) Err() error
- func (cmd *ClusterSlotsCmd) FullName() string
- func (cmd *ClusterSlotsCmd) GetCmdType() CmdType
- func (cmd *ClusterSlotsCmd) Name() string
- func (cmd *ClusterSlotsCmd) Result() ([]ClusterSlot, error)
- func (cmd *ClusterSlotsCmd) SetErr(e error)
- func (cmd *ClusterSlotsCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *ClusterSlotsCmd) SetStepCount(stepCount int8)
- func (cmd *ClusterSlotsCmd) SetVal(val []ClusterSlot)
- func (cmd *ClusterSlotsCmd) String() string
- func (cmd *ClusterSlotsCmd) Val() []ClusterSlot
- type Cmd
- func (cmd *Cmd) Args() []interface{}
- func (cmd *Cmd) Bool() (bool, error)
- func (cmd *Cmd) BoolSlice() ([]bool, error)
- func (cmd *Cmd) Clone() Cmder
- func (cmd *Cmd) Err() error
- func (cmd *Cmd) Float32() (float32, error)
- func (cmd *Cmd) Float32Slice() ([]float32, error)
- func (cmd *Cmd) Float64() (float64, error)
- func (cmd *Cmd) Float64Slice() ([]float64, error)
- func (cmd *Cmd) FullName() string
- func (cmd *Cmd) GetCmdType() CmdType
- func (cmd *Cmd) Int() (int, error)
- func (cmd *Cmd) Int64() (int64, error)
- func (cmd *Cmd) Int64Slice() ([]int64, error)
- func (cmd *Cmd) Name() string
- func (cmd *Cmd) Result() (interface{}, error)
- func (cmd *Cmd) SetErr(e error)
- func (cmd *Cmd) SetFirstKeyPos(keyPos int8)
- func (cmd *Cmd) SetStepCount(stepCount int8)
- func (cmd *Cmd) SetVal(val interface{})
- func (cmd *Cmd) Slice() ([]interface{}, error)
- func (cmd *Cmd) String() string
- func (cmd *Cmd) StringSlice() ([]string, error)
- func (cmd *Cmd) Text() (string, error)
- func (cmd *Cmd) Uint64() (uint64, error)
- func (cmd *Cmd) Uint64Slice() ([]uint64, error)
- func (cmd *Cmd) Val() interface{}
- type CmdType
- type CmdTypeGetter
- type CmdTypeKeyValuesValue
- type CmdTypeScanValue
- type CmdTypeXAutoClaimJustIDValue
- type CmdTypeXAutoClaimValue
- type CmdTypeZSliceWithKeyValue
- type CmdTyper
- type Cmdable
- type Cmder
- type CommandInfo
- type CommandInfoResolveFunc
- type CommandsInfoCmd
- func (cmd *CommandsInfoCmd) Args() []interface{}
- func (cmd *CommandsInfoCmd) Clone() Cmder
- func (cmd *CommandsInfoCmd) Err() error
- func (cmd *CommandsInfoCmd) FullName() string
- func (cmd *CommandsInfoCmd) GetCmdType() CmdType
- func (cmd *CommandsInfoCmd) Name() string
- func (cmd *CommandsInfoCmd) Result() (map[string]*CommandInfo, error)
- func (cmd *CommandsInfoCmd) SetErr(e error)
- func (cmd *CommandsInfoCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *CommandsInfoCmd) SetStepCount(stepCount int8)
- func (cmd *CommandsInfoCmd) SetVal(val map[string]*CommandInfo)
- func (cmd *CommandsInfoCmd) String() string
- func (cmd *CommandsInfoCmd) Val() map[string]*CommandInfo
- type Conn
- func (c Conn) ACLCat(ctx context.Context) *StringSliceCmd
- func (c Conn) ACLCatArgs(ctx context.Context, options *ACLCatArgs) *StringSliceCmd
- func (c Conn) ACLDelUser(ctx context.Context, username string) *IntCmd
- func (c Conn) ACLDryRun(ctx context.Context, username string, command ...interface{}) *StringCmd
- func (c Conn) ACLGenPass(ctx context.Context, bit int) *StringCmd
- func (c Conn) ACLList(ctx context.Context) *StringSliceCmd
- func (c Conn) ACLLog(ctx context.Context, count int64) *ACLLogCmd
- func (c Conn) ACLLogReset(ctx context.Context) *StatusCmd
- func (c Conn) ACLSetUser(ctx context.Context, username string, rules ...string) *StatusCmd
- func (c Conn) ACLUsers(ctx context.Context) *StringSliceCmd
- func (c Conn) ACLWhoAmI(ctx context.Context) *StringCmd
- func (c Conn) Append(ctx context.Context, key, value string) *IntCmd
- func (c Conn) Auth(ctx context.Context, password string) *StatusCmd
- func (c Conn) AuthACL(ctx context.Context, username, password string) *StatusCmd
- func (c Conn) BFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Conn) BFCard(ctx context.Context, key string) *IntCmd
- func (c Conn) BFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Conn) BFInfo(ctx context.Context, key string) *BFInfoCmd
- func (c Conn) BFInfoArg(ctx context.Context, key, option string) *BFInfoCmd
- func (c Conn) BFInfoCapacity(ctx context.Context, key string) *BFInfoCmd
- func (c Conn) BFInfoExpansion(ctx context.Context, key string) *BFInfoCmd
- func (c Conn) BFInfoFilters(ctx context.Context, key string) *BFInfoCmd
- func (c Conn) BFInfoItems(ctx context.Context, key string) *BFInfoCmd
- func (c Conn) BFInfoSize(ctx context.Context, key string) *BFInfoCmd
- func (c Conn) BFInsert(ctx context.Context, key string, options *BFInsertOptions, ...) *BoolSliceCmd
- func (c Conn) BFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c Conn) BFMAdd(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Conn) BFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Conn) BFReserve(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c Conn) BFReserveExpansion(ctx context.Context, key string, errorRate float64, capacity, expansion int64) *StatusCmd
- func (c Conn) BFReserveNonScaling(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c Conn) BFReserveWithArgs(ctx context.Context, key string, options *BFReserveOptions) *StatusCmd
- func (c Conn) BFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c Conn) BLMPop(ctx context.Context, timeout time.Duration, direction string, count int64, ...) *KeyValuesCmd
- func (c Conn) BLMove(ctx context.Context, source, destination, srcpos, destpos string, ...) *StringCmd
- func (c Conn) BLPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c Conn) BRPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c Conn) BRPopLPush(ctx context.Context, source, destination string, timeout time.Duration) *StringCmddeprecated
- func (c Conn) BZMPop(ctx context.Context, timeout time.Duration, order string, count int64, ...) *ZSliceWithKeyCmd
- func (c Conn) BZPopMax(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c Conn) BZPopMin(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c Conn) BgRewriteAOF(ctx context.Context) *StatusCmd
- func (c Conn) BgSave(ctx context.Context) *StatusCmd
- func (c Conn) BitCount(ctx context.Context, key string, bitCount *BitCount) *IntCmd
- func (c Conn) BitField(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c Conn) BitFieldRO(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c Conn) BitOpAnd(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Conn) BitOpAndOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Conn) BitOpDiff(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Conn) BitOpDiff1(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Conn) BitOpNot(ctx context.Context, destKey string, key string) *IntCmd
- func (c Conn) BitOpOne(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Conn) BitOpOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Conn) BitOpXor(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Conn) BitPos(ctx context.Context, key string, bit int64, pos ...int64) *IntCmd
- func (c Conn) BitPosSpan(ctx context.Context, key string, bit int8, start, end int64, span string) *IntCmd
- func (c Conn) CFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Conn) CFAddNX(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Conn) CFCount(ctx context.Context, key string, element interface{}) *IntCmd
- func (c Conn) CFDel(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Conn) CFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Conn) CFInfo(ctx context.Context, key string) *CFInfoCmd
- func (c Conn) CFInsert(ctx context.Context, key string, options *CFInsertOptions, ...) *BoolSliceCmd
- func (c Conn) CFInsertNX(ctx context.Context, key string, options *CFInsertOptions, ...) *IntSliceCmd
- func (c Conn) CFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c Conn) CFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Conn) CFReserve(ctx context.Context, key string, capacity int64) *StatusCmd
- func (c Conn) CFReserveBucketSize(ctx context.Context, key string, capacity int64, bucketsize int64) *StatusCmd
- func (c Conn) CFReserveExpansion(ctx context.Context, key string, capacity int64, expansion int64) *StatusCmd
- func (c Conn) CFReserveMaxIterations(ctx context.Context, key string, capacity int64, maxiterations int64) *StatusCmd
- func (c Conn) CFReserveWithArgs(ctx context.Context, key string, options *CFReserveOptions) *StatusCmd
- func (c Conn) CFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c Conn) CMSIncrBy(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Conn) CMSInfo(ctx context.Context, key string) *CMSInfoCmd
- func (c Conn) CMSInitByDim(ctx context.Context, key string, width, depth int64) *StatusCmd
- func (c Conn) CMSInitByProb(ctx context.Context, key string, errorRate, probability float64) *StatusCmd
- func (c Conn) CMSMerge(ctx context.Context, destKey string, sourceKeys ...string) *StatusCmd
- func (c Conn) CMSMergeWithWeight(ctx context.Context, destKey string, sourceKeys map[string]int64) *StatusCmd
- func (c Conn) CMSQuery(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Conn) ClientGetName(ctx context.Context) *StringCmd
- func (c Conn) ClientID(ctx context.Context) *IntCmd
- func (c Conn) ClientInfo(ctx context.Context) *ClientInfoCmd
- func (c Conn) ClientKill(ctx context.Context, ipPort string) *StatusCmd
- func (c Conn) ClientKillByFilter(ctx context.Context, keys ...string) *IntCmd
- func (c Conn) ClientList(ctx context.Context) *StringCmd
- func (c Conn) ClientMaintNotifications(ctx context.Context, enabled bool, endpointType string) *StatusCmd
- func (c Conn) ClientPause(ctx context.Context, dur time.Duration) *BoolCmd
- func (c Conn) ClientSetInfo(ctx context.Context, info LibraryInfo) *StatusCmd
- func (c Conn) ClientSetName(ctx context.Context, name string) *BoolCmd
- func (c Conn) ClientUnblock(ctx context.Context, id int64) *IntCmd
- func (c Conn) ClientUnblockWithError(ctx context.Context, id int64) *IntCmd
- func (c Conn) ClientUnpause(ctx context.Context) *BoolCmd
- func (c *Conn) Close() error
- func (c Conn) ClusterAddSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c Conn) ClusterAddSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c Conn) ClusterCountFailureReports(ctx context.Context, nodeID string) *IntCmd
- func (c Conn) ClusterCountKeysInSlot(ctx context.Context, slot int) *IntCmd
- func (c Conn) ClusterDelSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c Conn) ClusterDelSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c Conn) ClusterFailover(ctx context.Context) *StatusCmd
- func (c Conn) ClusterForget(ctx context.Context, nodeID string) *StatusCmd
- func (c Conn) ClusterGetKeysInSlot(ctx context.Context, slot int, count int) *StringSliceCmd
- func (c Conn) ClusterInfo(ctx context.Context) *StringCmd
- func (c Conn) ClusterKeySlot(ctx context.Context, key string) *IntCmd
- func (c Conn) ClusterLinks(ctx context.Context) *ClusterLinksCmd
- func (c Conn) ClusterMeet(ctx context.Context, host, port string) *StatusCmd
- func (c Conn) ClusterMyID(ctx context.Context) *StringCmd
- func (c Conn) ClusterMyShardID(ctx context.Context) *StringCmd
- func (c Conn) ClusterNodes(ctx context.Context) *StringCmd
- func (c Conn) ClusterReplicate(ctx context.Context, nodeID string) *StatusCmd
- func (c Conn) ClusterResetHard(ctx context.Context) *StatusCmd
- func (c Conn) ClusterResetSoft(ctx context.Context) *StatusCmd
- func (c Conn) ClusterSaveConfig(ctx context.Context) *StatusCmd
- func (c Conn) ClusterShards(ctx context.Context) *ClusterShardsCmd
- func (c Conn) ClusterSlaves(ctx context.Context, nodeID string) *StringSliceCmddeprecated
- func (c Conn) ClusterSlots(ctx context.Context) *ClusterSlotsCmddeprecated
- func (c Conn) Command(ctx context.Context) *CommandsInfoCmd
- func (c Conn) CommandGetKeys(ctx context.Context, commands ...interface{}) *StringSliceCmd
- func (c Conn) CommandGetKeysAndFlags(ctx context.Context, commands ...interface{}) *KeyFlagsCmd
- func (c Conn) CommandList(ctx context.Context, filter *FilterBy) *StringSliceCmd
- func (c Conn) ConfigGet(ctx context.Context, parameter string) *MapStringStringCmd
- func (c Conn) ConfigResetStat(ctx context.Context) *StatusCmd
- func (c Conn) ConfigRewrite(ctx context.Context) *StatusCmd
- func (c Conn) ConfigSet(ctx context.Context, parameter, value string) *StatusCmd
- func (c Conn) Copy(ctx context.Context, sourceKey, destKey string, db int, replace bool) *IntCmd
- func (c Conn) DBSize(ctx context.Context) *IntCmd
- func (c Conn) DebugObject(ctx context.Context, key string) *StringCmd
- func (c Conn) Decr(ctx context.Context, key string) *IntCmd
- func (c Conn) DecrBy(ctx context.Context, key string, decrement int64) *IntCmd
- func (c Conn) Del(ctx context.Context, keys ...string) *IntCmd
- func (c Conn) DelExArgs(ctx context.Context, key string, a DelExArgs) *IntCmd
- func (c Conn) Digest(ctx context.Context, key string) *DigestCmd
- func (c Conn) Do(ctx context.Context, args ...interface{}) *Cmd
- func (c Conn) Dump(ctx context.Context, key string) *StringCmd
- func (c Conn) Echo(ctx context.Context, message interface{}) *StringCmd
- func (c Conn) Eval(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c Conn) EvalRO(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c Conn) EvalSha(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c Conn) EvalShaRO(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c Conn) Exists(ctx context.Context, keys ...string) *IntCmd
- func (c Conn) Expire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Conn) ExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c Conn) ExpireGT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Conn) ExpireLT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Conn) ExpireNX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Conn) ExpireTime(ctx context.Context, key string) *DurationCmd
- func (c Conn) ExpireXX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Conn) FCall(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Conn) FCallRO(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Conn) FCallRo(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Conn) FTAggregate(ctx context.Context, index string, query string) *MapStringInterfaceCmd
- func (c Conn) FTAggregateWithArgs(ctx context.Context, index string, query string, options *FTAggregateOptions) *AggregateCmd
- func (c Conn) FTAliasAdd(ctx context.Context, index string, alias string) *StatusCmd
- func (c Conn) FTAliasDel(ctx context.Context, alias string) *StatusCmd
- func (c Conn) FTAliasUpdate(ctx context.Context, index string, alias string) *StatusCmd
- func (c Conn) FTAlter(ctx context.Context, index string, skipInitialScan bool, ...) *StatusCmd
- func (c Conn) FTConfigGet(ctx context.Context, option string) *MapMapStringInterfaceCmddeprecated
- func (c Conn) FTConfigSet(ctx context.Context, option string, value interface{}) *StatusCmddeprecated
- func (c Conn) FTCreate(ctx context.Context, index string, options *FTCreateOptions, ...) *StatusCmd
- func (c Conn) FTCursorDel(ctx context.Context, index string, cursorId int) *StatusCmd
- func (c Conn) FTCursorRead(ctx context.Context, index string, cursorId int, count int) *MapStringInterfaceCmd
- func (c Conn) FTDictAdd(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c Conn) FTDictDel(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c Conn) FTDictDump(ctx context.Context, dict string) *StringSliceCmd
- func (c Conn) FTDropIndex(ctx context.Context, index string) *StatusCmd
- func (c Conn) FTDropIndexWithArgs(ctx context.Context, index string, options *FTDropIndexOptions) *StatusCmd
- func (c Conn) FTExplain(ctx context.Context, index string, query string) *StringCmd
- func (c Conn) FTExplainCli(ctx context.Context, key, path string) error
- func (c Conn) FTExplainWithArgs(ctx context.Context, index string, query string, options *FTExplainOptions) *StringCmd
- func (c Conn) FTHybrid(ctx context.Context, index string, searchExpr string, vectorField string, ...) *FTHybridCmd
- func (c Conn) FTHybridWithArgs(ctx context.Context, index string, options *FTHybridOptions) *FTHybridCmd
- func (c Conn) FTInfo(ctx context.Context, index string) *FTInfoCmd
- func (c Conn) FTSearch(ctx context.Context, index string, query string) *FTSearchCmd
- func (c Conn) FTSearchWithArgs(ctx context.Context, index string, query string, options *FTSearchOptions) *FTSearchCmd
- func (c Conn) FTSpellCheck(ctx context.Context, index string, query string) *FTSpellCheckCmd
- func (c Conn) FTSpellCheckWithArgs(ctx context.Context, index string, query string, options *FTSpellCheckOptions) *FTSpellCheckCmd
- func (c Conn) FTSynDump(ctx context.Context, index string) *FTSynDumpCmd
- func (c Conn) FTSynUpdate(ctx context.Context, index string, synGroupId interface{}, terms []interface{}) *StatusCmd
- func (c Conn) FTSynUpdateWithArgs(ctx context.Context, index string, synGroupId interface{}, ...) *StatusCmd
- func (c Conn) FTTagVals(ctx context.Context, index string, field string) *StringSliceCmd
- func (c Conn) FT_List(ctx context.Context) *StringSliceCmd
- func (c Conn) FlushAll(ctx context.Context) *StatusCmd
- func (c Conn) FlushAllAsync(ctx context.Context) *StatusCmd
- func (c Conn) FlushDB(ctx context.Context) *StatusCmd
- func (c Conn) FlushDBAsync(ctx context.Context) *StatusCmd
- func (c Conn) FunctionDelete(ctx context.Context, libName string) *StringCmd
- func (c Conn) FunctionDump(ctx context.Context) *StringCmd
- func (c Conn) FunctionFlush(ctx context.Context) *StringCmd
- func (c Conn) FunctionFlushAsync(ctx context.Context) *StringCmd
- func (c Conn) FunctionKill(ctx context.Context) *StringCmd
- func (c Conn) FunctionList(ctx context.Context, q FunctionListQuery) *FunctionListCmd
- func (c Conn) FunctionLoad(ctx context.Context, code string) *StringCmd
- func (c Conn) FunctionLoadReplace(ctx context.Context, code string) *StringCmd
- func (c Conn) FunctionRestore(ctx context.Context, libDump string) *StringCmd
- func (c Conn) FunctionStats(ctx context.Context) *FunctionStatsCmd
- func (c Conn) GeoAdd(ctx context.Context, key string, geoLocation ...*GeoLocation) *IntCmd
- func (c Conn) GeoDist(ctx context.Context, key string, member1, member2, unit string) *FloatCmd
- func (c Conn) GeoHash(ctx context.Context, key string, members ...string) *StringSliceCmd
- func (c Conn) GeoPos(ctx context.Context, key string, members ...string) *GeoPosCmd
- func (c Conn) GeoRadius(ctx context.Context, key string, longitude, latitude float64, ...) *GeoLocationCmddeprecated
- func (c Conn) GeoRadiusByMember(ctx context.Context, key, member string, query *GeoRadiusQuery) *GeoLocationCmddeprecated
- func (c Conn) GeoRadiusByMemberStore(ctx context.Context, key, member string, query *GeoRadiusQuery) *IntCmd
- func (c Conn) GeoRadiusStore(ctx context.Context, key string, longitude, latitude float64, ...) *IntCmd
- func (c Conn) GeoSearch(ctx context.Context, key string, q *GeoSearchQuery) *StringSliceCmd
- func (c Conn) GeoSearchLocation(ctx context.Context, key string, q *GeoSearchLocationQuery) *GeoSearchLocationCmd
- func (c Conn) GeoSearchStore(ctx context.Context, key, store string, q *GeoSearchStoreQuery) *IntCmd
- func (c Conn) Get(ctx context.Context, key string) *StringCmd
- func (c Conn) GetBit(ctx context.Context, key string, offset int64) *IntCmd
- func (c Conn) GetDel(ctx context.Context, key string) *StringCmd
- func (c Conn) GetEx(ctx context.Context, key string, expiration time.Duration) *StringCmd
- func (c Conn) GetRange(ctx context.Context, key string, start, end int64) *StringCmd
- func (c Conn) GetSet(ctx context.Context, key string, value interface{}) *StringCmddeprecated
- func (c Conn) HDel(ctx context.Context, key string, fields ...string) *IntCmd
- func (c Conn) HExists(ctx context.Context, key, field string) *BoolCmd
- func (c Conn) HExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c Conn) HExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c Conn) HExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c Conn) HExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Conn) HExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c Conn) HGet(ctx context.Context, key, field string) *StringCmd
- func (c Conn) HGetAll(ctx context.Context, key string) *MapStringStringCmd
- func (c Conn) HGetDel(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c Conn) HGetEX(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c Conn) HGetEXWithArgs(ctx context.Context, key string, options *HGetEXOptions, fields ...string) *StringSliceCmd
- func (c Conn) HIncrBy(ctx context.Context, key, field string, incr int64) *IntCmd
- func (c Conn) HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd
- func (c Conn) HKeys(ctx context.Context, key string) *StringSliceCmd
- func (c Conn) HLen(ctx context.Context, key string) *IntCmd
- func (c Conn) HMGet(ctx context.Context, key string, fields ...string) *SliceCmd
- func (c Conn) HMSet(ctx context.Context, key string, values ...interface{}) *BoolCmd
- func (c Conn) HPExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c Conn) HPExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c Conn) HPExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c Conn) HPExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Conn) HPExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c Conn) HPTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Conn) HPersist(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Conn) HRandField(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Conn) HRandFieldWithValues(ctx context.Context, key string, count int) *KeyValueSliceCmd
- func (c Conn) HScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Conn) HScanNoValues(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Conn) HSet(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Conn) HSetEX(ctx context.Context, key string, fieldsAndValues ...string) *IntCmd
- func (c Conn) HSetEXWithArgs(ctx context.Context, key string, options *HSetEXOptions, ...) *IntCmd
- func (c Conn) HSetNX(ctx context.Context, key, field string, value interface{}) *BoolCmd
- func (c Conn) HStrLen(ctx context.Context, key, field string) *IntCmd
- func (c Conn) HTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Conn) HVals(ctx context.Context, key string) *StringSliceCmd
- func (c Conn) Hello(ctx context.Context, ver int, username, password, clientName string) *MapStringInterfaceCmd
- func (c Conn) Incr(ctx context.Context, key string) *IntCmd
- func (c Conn) IncrBy(ctx context.Context, key string, value int64) *IntCmd
- func (c Conn) IncrByFloat(ctx context.Context, key string, value float64) *FloatCmd
- func (c Conn) Info(ctx context.Context, sections ...string) *StringCmd
- func (c Conn) InfoMap(ctx context.Context, sections ...string) *InfoCmd
- func (c Conn) JSONArrAppend(ctx context.Context, key, path string, values ...interface{}) *IntSliceCmd
- func (c Conn) JSONArrIndex(ctx context.Context, key, path string, value ...interface{}) *IntSliceCmd
- func (c Conn) JSONArrIndexWithArgs(ctx context.Context, key, path string, options *JSONArrIndexArgs, ...) *IntSliceCmd
- func (c Conn) JSONArrInsert(ctx context.Context, key, path string, index int64, values ...interface{}) *IntSliceCmd
- func (c Conn) JSONArrLen(ctx context.Context, key, path string) *IntSliceCmd
- func (c Conn) JSONArrPop(ctx context.Context, key, path string, index int) *StringSliceCmd
- func (c Conn) JSONArrTrim(ctx context.Context, key, path string) *IntSliceCmd
- func (c Conn) JSONArrTrimWithArgs(ctx context.Context, key, path string, options *JSONArrTrimArgs) *IntSliceCmd
- func (c Conn) JSONClear(ctx context.Context, key, path string) *IntCmd
- func (c Conn) JSONDebugMemory(ctx context.Context, key, path string) *IntCmd
- func (c Conn) JSONDel(ctx context.Context, key, path string) *IntCmd
- func (c Conn) JSONForget(ctx context.Context, key, path string) *IntCmd
- func (c Conn) JSONGet(ctx context.Context, key string, paths ...string) *JSONCmd
- func (c Conn) JSONGetWithArgs(ctx context.Context, key string, options *JSONGetArgs, paths ...string) *JSONCmd
- func (c Conn) JSONMGet(ctx context.Context, path string, keys ...string) *JSONSliceCmd
- func (c Conn) JSONMSet(ctx context.Context, params ...interface{}) *StatusCmd
- func (c Conn) JSONMSetArgs(ctx context.Context, docs []JSONSetArgs) *StatusCmd
- func (c Conn) JSONMerge(ctx context.Context, key, path string, value string) *StatusCmd
- func (c Conn) JSONNumIncrBy(ctx context.Context, key, path string, value float64) *JSONCmd
- func (c Conn) JSONObjKeys(ctx context.Context, key, path string) *SliceCmd
- func (c Conn) JSONObjLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Conn) JSONSet(ctx context.Context, key, path string, value interface{}) *StatusCmd
- func (c Conn) JSONSetMode(ctx context.Context, key, path string, value interface{}, mode string) *StatusCmd
- func (c Conn) JSONStrAppend(ctx context.Context, key, path, value string) *IntPointerSliceCmd
- func (c Conn) JSONStrLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Conn) JSONToggle(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Conn) JSONType(ctx context.Context, key, path string) *JSONSliceCmd
- func (c Conn) Keys(ctx context.Context, pattern string) *StringSliceCmd
- func (c Conn) LCS(ctx context.Context, q *LCSQuery) *LCSCmd
- func (c Conn) LIndex(ctx context.Context, key string, index int64) *StringCmd
- func (c Conn) LInsert(ctx context.Context, key, op string, pivot, value interface{}) *IntCmd
- func (c Conn) LInsertAfter(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c Conn) LInsertBefore(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c Conn) LLen(ctx context.Context, key string) *IntCmd
- func (c Conn) LMPop(ctx context.Context, direction string, count int64, keys ...string) *KeyValuesCmd
- func (c Conn) LMove(ctx context.Context, source, destination, srcpos, destpos string) *StringCmd
- func (c Conn) LPop(ctx context.Context, key string) *StringCmd
- func (c Conn) LPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Conn) LPos(ctx context.Context, key string, value string, a LPosArgs) *IntCmd
- func (c Conn) LPosCount(ctx context.Context, key string, value string, count int64, a LPosArgs) *IntSliceCmd
- func (c Conn) LPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Conn) LPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Conn) LRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c Conn) LRem(ctx context.Context, key string, count int64, value interface{}) *IntCmd
- func (c Conn) LSet(ctx context.Context, key string, index int64, value interface{}) *StatusCmd
- func (c Conn) LTrim(ctx context.Context, key string, start, stop int64) *StatusCmd
- func (c Conn) LastSave(ctx context.Context) *IntCmd
- func (c Conn) Latency(ctx context.Context) *LatencyCmd
- func (c Conn) LatencyReset(ctx context.Context, events ...interface{}) *StatusCmd
- func (c Conn) MGet(ctx context.Context, keys ...string) *SliceCmd
- func (c Conn) MSet(ctx context.Context, values ...interface{}) *StatusCmd
- func (c Conn) MSetEX(ctx context.Context, args MSetEXArgs, values ...interface{}) *IntCmd
- func (c Conn) MSetNX(ctx context.Context, values ...interface{}) *BoolCmd
- func (c Conn) MemoryUsage(ctx context.Context, key string, samples ...int) *IntCmd
- func (c Conn) Migrate(ctx context.Context, host, port, key string, db int, timeout time.Duration) *StatusCmd
- func (c Conn) ModuleLoadex(ctx context.Context, conf *ModuleLoadexConfig) *StringCmd
- func (c Conn) Monitor(ctx context.Context, ch chan string) *MonitorCmd
- func (c Conn) Move(ctx context.Context, key string, db int) *BoolCmd
- func (c Conn) ObjectEncoding(ctx context.Context, key string) *StringCmd
- func (c Conn) ObjectFreq(ctx context.Context, key string) *IntCmd
- func (c Conn) ObjectIdleTime(ctx context.Context, key string) *DurationCmd
- func (c Conn) ObjectRefCount(ctx context.Context, key string) *IntCmd
- func (c Conn) PExpire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Conn) PExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c Conn) PExpireTime(ctx context.Context, key string) *DurationCmd
- func (c Conn) PFAdd(ctx context.Context, key string, els ...interface{}) *IntCmd
- func (c Conn) PFCount(ctx context.Context, keys ...string) *IntCmd
- func (c Conn) PFMerge(ctx context.Context, dest string, keys ...string) *StatusCmd
- func (c Conn) PTTL(ctx context.Context, key string) *DurationCmd
- func (c Conn) Persist(ctx context.Context, key string) *BoolCmd
- func (c Conn) Ping(ctx context.Context) *StatusCmd
- func (c *Conn) Pipeline() Pipeliner
- func (c *Conn) Pipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c *Conn) Process(ctx context.Context, cmd Cmder) error
- func (c Conn) PubSubChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c Conn) PubSubNumPat(ctx context.Context) *IntCmd
- func (c Conn) PubSubNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c Conn) PubSubShardChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c Conn) PubSubShardNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c Conn) Publish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c Conn) Quit(_ context.Context) *StatusCmddeprecated
- func (c Conn) RPop(ctx context.Context, key string) *StringCmd
- func (c Conn) RPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Conn) RPopLPush(ctx context.Context, source, destination string) *StringCmddeprecated
- func (c Conn) RPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Conn) RPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Conn) RandomKey(ctx context.Context) *StringCmd
- func (c Conn) ReadOnly(ctx context.Context) *StatusCmd
- func (c Conn) ReadWrite(ctx context.Context) *StatusCmd
- func (c *Conn) RegisterPushNotificationHandler(pushNotificationName string, handler push.NotificationHandler, protected bool) error
- func (c Conn) Rename(ctx context.Context, key, newkey string) *StatusCmd
- func (c Conn) RenameNX(ctx context.Context, key, newkey string) *BoolCmd
- func (c Conn) Restore(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c Conn) RestoreReplace(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c Conn) SAdd(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Conn) SCard(ctx context.Context, key string) *IntCmd
- func (c Conn) SDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Conn) SDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Conn) SInter(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Conn) SInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c Conn) SInterStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Conn) SIsMember(ctx context.Context, key string, member interface{}) *BoolCmd
- func (c Conn) SMIsMember(ctx context.Context, key string, members ...interface{}) *BoolSliceCmd
- func (c Conn) SMembers(ctx context.Context, key string) *StringSliceCmd
- func (c Conn) SMembersMap(ctx context.Context, key string) *StringStructMapCmd
- func (c Conn) SMove(ctx context.Context, source, destination string, member interface{}) *BoolCmd
- func (c Conn) SPop(ctx context.Context, key string) *StringCmd
- func (c Conn) SPopN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c Conn) SPublish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c Conn) SRandMember(ctx context.Context, key string) *StringCmd
- func (c Conn) SRandMemberN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c Conn) SRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Conn) SScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Conn) SUnion(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Conn) SUnionStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Conn) Save(ctx context.Context) *StatusCmd
- func (c Conn) Scan(ctx context.Context, cursor uint64, match string, count int64) *ScanCmd
- func (c Conn) ScanType(ctx context.Context, cursor uint64, match string, count int64, keyType string) *ScanCmd
- func (c Conn) ScriptExists(ctx context.Context, hashes ...string) *BoolSliceCmd
- func (c Conn) ScriptFlush(ctx context.Context) *StatusCmd
- func (c Conn) ScriptKill(ctx context.Context) *StatusCmd
- func (c Conn) ScriptLoad(ctx context.Context, script string) *StringCmd
- func (c Conn) Select(ctx context.Context, index int) *StatusCmd
- func (c Conn) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd
- func (c Conn) SetArgs(ctx context.Context, key string, value interface{}, a SetArgs) *StatusCmd
- func (c Conn) SetBit(ctx context.Context, key string, offset int64, value int) *IntCmd
- func (c Conn) SetEx(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmddeprecated
- func (c Conn) SetIFDEQ(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c Conn) SetIFDEQGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c Conn) SetIFDNE(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c Conn) SetIFDNEGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c Conn) SetIFEQ(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c Conn) SetIFEQGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c Conn) SetIFNE(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c Conn) SetIFNEGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c Conn) SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmddeprecated
- func (c Conn) SetRange(ctx context.Context, key string, offset int64, value string) *IntCmd
- func (c Conn) SetXX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmd
- func (c Conn) Shutdown(ctx context.Context) *StatusCmd
- func (c Conn) ShutdownNoSave(ctx context.Context) *StatusCmd
- func (c Conn) ShutdownSave(ctx context.Context) *StatusCmd
- func (c Conn) SlaveOf(ctx context.Context, host, port string) *StatusCmddeprecated
- func (c Conn) SlowLogGet(ctx context.Context, num int64) *SlowLogCmd
- func (c Conn) SlowLogLen(ctx context.Context) *IntCmd
- func (c Conn) SlowLogReset(ctx context.Context) *StatusCmd
- func (c Conn) Sort(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c Conn) SortInterfaces(ctx context.Context, key string, sort *Sort) *SliceCmd
- func (c Conn) SortRO(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c Conn) SortStore(ctx context.Context, key, store string, sort *Sort) *IntCmd
- func (c Conn) StrLen(ctx context.Context, key string) *IntCmd
- func (c *Conn) String() string
- func (c Conn) SwapDB(ctx context.Context, index1, index2 int) *StatusCmd
- func (c Conn) Sync(_ context.Context)
- func (c Conn) TDigestAdd(ctx context.Context, key string, elements ...float64) *StatusCmd
- func (c Conn) TDigestByRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c Conn) TDigestByRevRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c Conn) TDigestCDF(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c Conn) TDigestCreate(ctx context.Context, key string) *StatusCmd
- func (c Conn) TDigestCreateWithCompression(ctx context.Context, key string, compression int64) *StatusCmd
- func (c Conn) TDigestInfo(ctx context.Context, key string) *TDigestInfoCmd
- func (c Conn) TDigestMax(ctx context.Context, key string) *FloatCmd
- func (c Conn) TDigestMerge(ctx context.Context, destKey string, options *TDigestMergeOptions, ...) *StatusCmd
- func (c Conn) TDigestMin(ctx context.Context, key string) *FloatCmd
- func (c Conn) TDigestQuantile(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c Conn) TDigestRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c Conn) TDigestReset(ctx context.Context, key string) *StatusCmd
- func (c Conn) TDigestRevRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c Conn) TDigestTrimmedMean(ctx context.Context, key string, lowCutQuantile, highCutQuantile float64) *FloatCmd
- func (c Conn) TSAdd(ctx context.Context, key string, timestamp interface{}, value float64) *IntCmd
- func (c Conn) TSAddWithArgs(ctx context.Context, key string, timestamp interface{}, value float64, ...) *IntCmd
- func (c Conn) TSAlter(ctx context.Context, key string, options *TSAlterOptions) *StatusCmd
- func (c Conn) TSCreate(ctx context.Context, key string) *StatusCmd
- func (c Conn) TSCreateRule(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c Conn) TSCreateRuleWithArgs(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c Conn) TSCreateWithArgs(ctx context.Context, key string, options *TSOptions) *StatusCmd
- func (c Conn) TSDecrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c Conn) TSDecrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c Conn) TSDel(ctx context.Context, Key string, fromTimestamp int, toTimestamp int) *IntCmd
- func (c Conn) TSDeleteRule(ctx context.Context, sourceKey string, destKey string) *StatusCmd
- func (c Conn) TSGet(ctx context.Context, key string) *TSTimestampValueCmd
- func (c Conn) TSGetWithArgs(ctx context.Context, key string, options *TSGetOptions) *TSTimestampValueCmd
- func (c Conn) TSIncrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c Conn) TSIncrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c Conn) TSInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c Conn) TSInfoWithArgs(ctx context.Context, key string, options *TSInfoOptions) *MapStringInterfaceCmd
- func (c Conn) TSMAdd(ctx context.Context, ktvSlices [][]interface{}) *IntSliceCmd
- func (c Conn) TSMGet(ctx context.Context, filters []string) *MapStringSliceInterfaceCmd
- func (c Conn) TSMGetWithArgs(ctx context.Context, filters []string, options *TSMGetOptions) *MapStringSliceInterfaceCmd
- func (c Conn) TSMRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c Conn) TSMRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c Conn) TSMRevRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c Conn) TSMRevRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c Conn) TSQueryIndex(ctx context.Context, filterExpr []string) *StringSliceCmd
- func (c Conn) TSRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c Conn) TSRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c Conn) TSRevRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c Conn) TSRevRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c Conn) TTL(ctx context.Context, key string) *DurationCmd
- func (c Conn) Time(ctx context.Context) *TimeCmd
- func (c Conn) TopKAdd(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c Conn) TopKCount(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Conn) TopKIncrBy(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c Conn) TopKInfo(ctx context.Context, key string) *TopKInfoCmd
- func (c Conn) TopKList(ctx context.Context, key string) *StringSliceCmd
- func (c Conn) TopKListWithCount(ctx context.Context, key string) *MapStringIntCmd
- func (c Conn) TopKQuery(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Conn) TopKReserve(ctx context.Context, key string, k int64) *StatusCmd
- func (c Conn) TopKReserveWithOptions(ctx context.Context, key string, k int64, width, depth int64, decay float64) *StatusCmd
- func (c Conn) Touch(ctx context.Context, keys ...string) *IntCmd
- func (c *Conn) TxPipeline() Pipeliner
- func (c *Conn) TxPipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c Conn) Type(ctx context.Context, key string) *StatusCmd
- func (c Conn) Unlink(ctx context.Context, keys ...string) *IntCmd
- func (c Conn) VAdd(ctx context.Context, key, element string, val Vector) *BoolCmd
- func (c Conn) VAddWithArgs(ctx context.Context, key, element string, val Vector, addArgs *VAddArgs) *BoolCmd
- func (c Conn) VCard(ctx context.Context, key string) *IntCmd
- func (c Conn) VClearAttributes(ctx context.Context, key, element string) *BoolCmd
- func (c Conn) VDim(ctx context.Context, key string) *IntCmd
- func (c Conn) VEmb(ctx context.Context, key, element string, raw bool) *SliceCmd
- func (c Conn) VGetAttr(ctx context.Context, key, element string) *StringCmd
- func (c Conn) VInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c Conn) VLinks(ctx context.Context, key, element string) *StringSliceCmd
- func (c Conn) VLinksWithScores(ctx context.Context, key, element string) *VectorScoreSliceCmd
- func (c Conn) VRandMember(ctx context.Context, key string) *StringCmd
- func (c Conn) VRandMemberCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Conn) VRange(ctx context.Context, key, start, end string, count int64) *StringSliceCmd
- func (c Conn) VRem(ctx context.Context, key, element string) *BoolCmd
- func (c Conn) VSetAttr(ctx context.Context, key, element string, attr interface{}) *BoolCmd
- func (c Conn) VSim(ctx context.Context, key string, val Vector) *StringSliceCmd
- func (c Conn) VSimWithArgs(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *StringSliceCmd
- func (c Conn) VSimWithArgsWithScores(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *VectorScoreSliceCmd
- func (c Conn) VSimWithScores(ctx context.Context, key string, val Vector) *VectorScoreSliceCmd
- func (c Conn) Wait(ctx context.Context, numSlaves int, timeout time.Duration) *IntCmd
- func (c Conn) WaitAOF(ctx context.Context, numLocal, numSlaves int, timeout time.Duration) *IntCmd
- func (c Conn) XAck(ctx context.Context, stream, group string, ids ...string) *IntCmd
- func (c Conn) XAckDel(ctx context.Context, stream string, group string, mode string, ids ...string) *SliceCmd
- func (c Conn) XAdd(ctx context.Context, a *XAddArgs) *StringCmd
- func (c Conn) XAutoClaim(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimCmd
- func (c Conn) XAutoClaimJustID(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimJustIDCmd
- func (c Conn) XCfgSet(ctx context.Context, a *XCfgSetArgs) *StatusCmd
- func (c Conn) XClaim(ctx context.Context, a *XClaimArgs) *XMessageSliceCmd
- func (c Conn) XClaimJustID(ctx context.Context, a *XClaimArgs) *StringSliceCmd
- func (c Conn) XDel(ctx context.Context, stream string, ids ...string) *IntCmd
- func (c Conn) XDelEx(ctx context.Context, stream string, mode string, ids ...string) *SliceCmd
- func (c Conn) XGroupCreate(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Conn) XGroupCreateConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c Conn) XGroupCreateMkStream(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Conn) XGroupDelConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c Conn) XGroupDestroy(ctx context.Context, stream, group string) *IntCmd
- func (c Conn) XGroupSetID(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Conn) XInfoConsumers(ctx context.Context, key string, group string) *XInfoConsumersCmd
- func (c Conn) XInfoGroups(ctx context.Context, key string) *XInfoGroupsCmd
- func (c Conn) XInfoStream(ctx context.Context, key string) *XInfoStreamCmd
- func (c Conn) XInfoStreamFull(ctx context.Context, key string, count int) *XInfoStreamFullCmd
- func (c Conn) XLen(ctx context.Context, stream string) *IntCmd
- func (c Conn) XPending(ctx context.Context, stream, group string) *XPendingCmd
- func (c Conn) XPendingExt(ctx context.Context, a *XPendingExtArgs) *XPendingExtCmd
- func (c Conn) XRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c Conn) XRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c Conn) XRead(ctx context.Context, a *XReadArgs) *XStreamSliceCmd
- func (c Conn) XReadGroup(ctx context.Context, a *XReadGroupArgs) *XStreamSliceCmd
- func (c Conn) XReadStreams(ctx context.Context, streams ...string) *XStreamSliceCmd
- func (c Conn) XRevRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c Conn) XRevRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c Conn) XTrimMaxLen(ctx context.Context, key string, maxLen int64) *IntCmd
- func (c Conn) XTrimMaxLenApprox(ctx context.Context, key string, maxLen, limit int64) *IntCmd
- func (c Conn) XTrimMaxLenApproxMode(ctx context.Context, key string, maxLen, limit int64, mode string) *IntCmd
- func (c Conn) XTrimMaxLenMode(ctx context.Context, key string, maxLen int64, mode string) *IntCmd
- func (c Conn) XTrimMinID(ctx context.Context, key string, minID string) *IntCmd
- func (c Conn) XTrimMinIDApprox(ctx context.Context, key string, minID string, limit int64) *IntCmd
- func (c Conn) XTrimMinIDApproxMode(ctx context.Context, key string, minID string, limit int64, mode string) *IntCmd
- func (c Conn) XTrimMinIDMode(ctx context.Context, key string, minID string, mode string) *IntCmd
- func (c Conn) ZAdd(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Conn) ZAddArgs(ctx context.Context, key string, args ZAddArgs) *IntCmd
- func (c Conn) ZAddArgsIncr(ctx context.Context, key string, args ZAddArgs) *FloatCmd
- func (c Conn) ZAddGT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Conn) ZAddLT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Conn) ZAddNX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Conn) ZAddXX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Conn) ZCard(ctx context.Context, key string) *IntCmd
- func (c Conn) ZCount(ctx context.Context, key, min, max string) *IntCmd
- func (c Conn) ZDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Conn) ZDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Conn) ZDiffWithScores(ctx context.Context, keys ...string) *ZSliceCmd
- func (c Conn) ZIncrBy(ctx context.Context, key string, increment float64, member string) *FloatCmd
- func (c Conn) ZInter(ctx context.Context, store *ZStore) *StringSliceCmd
- func (c Conn) ZInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c Conn) ZInterStore(ctx context.Context, destination string, store *ZStore) *IntCmd
- func (c Conn) ZInterWithScores(ctx context.Context, store *ZStore) *ZSliceCmd
- func (c Conn) ZLexCount(ctx context.Context, key, min, max string) *IntCmd
- func (c Conn) ZMPop(ctx context.Context, order string, count int64, keys ...string) *ZSliceWithKeyCmd
- func (c Conn) ZMScore(ctx context.Context, key string, members ...string) *FloatSliceCmd
- func (c Conn) ZPopMax(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c Conn) ZPopMin(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c Conn) ZRandMember(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Conn) ZRandMemberWithScores(ctx context.Context, key string, count int) *ZSliceCmd
- func (c Conn) ZRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c Conn) ZRangeArgs(ctx context.Context, z ZRangeArgs) *StringSliceCmd
- func (c Conn) ZRangeArgsWithScores(ctx context.Context, z ZRangeArgs) *ZSliceCmd
- func (c Conn) ZRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Conn) ZRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Conn) ZRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c Conn) ZRangeStore(ctx context.Context, dst string, z ZRangeArgs) *IntCmd
- func (c Conn) ZRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c Conn) ZRank(ctx context.Context, key, member string) *IntCmd
- func (c Conn) ZRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c Conn) ZRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Conn) ZRemRangeByLex(ctx context.Context, key, min, max string) *IntCmd
- func (c Conn) ZRemRangeByRank(ctx context.Context, key string, start, stop int64) *IntCmd
- func (c Conn) ZRemRangeByScore(ctx context.Context, key, min, max string) *IntCmd
- func (c Conn) ZRevRange(ctx context.Context, key string, start, stop int64) *StringSliceCmddeprecated
- func (c Conn) ZRevRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Conn) ZRevRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Conn) ZRevRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c Conn) ZRevRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c Conn) ZRevRank(ctx context.Context, key, member string) *IntCmd
- func (c Conn) ZRevRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c Conn) ZScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Conn) ZScore(ctx context.Context, key, member string) *FloatCmd
- func (c Conn) ZUnion(ctx context.Context, store ZStore) *StringSliceCmd
- func (c Conn) ZUnionStore(ctx context.Context, dest string, store *ZStore) *IntCmd
- func (c Conn) ZUnionWithScores(ctx context.Context, store ZStore) *ZSliceCmd
- type ConnInfo
- type ConsistentHash
- type CreateIndexBuilder
- func (b *CreateIndexBuilder) DefaultLanguage(lang string) *CreateIndexBuilder
- func (b *CreateIndexBuilder) Filter(filter string) *CreateIndexBuilder
- func (b *CreateIndexBuilder) LanguageField(field string) *CreateIndexBuilder
- func (b *CreateIndexBuilder) NoFields() *CreateIndexBuilder
- func (b *CreateIndexBuilder) NoFreqs() *CreateIndexBuilder
- func (b *CreateIndexBuilder) NoHL() *CreateIndexBuilder
- func (b *CreateIndexBuilder) NoOffsets() *CreateIndexBuilder
- func (b *CreateIndexBuilder) OnHash() *CreateIndexBuilder
- func (b *CreateIndexBuilder) OnJSON() *CreateIndexBuilder
- func (b *CreateIndexBuilder) PayloadField(field string) *CreateIndexBuilder
- func (b *CreateIndexBuilder) Prefix(prefixes ...interface{}) *CreateIndexBuilder
- func (b *CreateIndexBuilder) Run() (string, error)
- func (b *CreateIndexBuilder) Schema(field *FieldSchema) *CreateIndexBuilder
- func (b *CreateIndexBuilder) Score(score float64) *CreateIndexBuilder
- func (b *CreateIndexBuilder) ScoreField(field string) *CreateIndexBuilder
- func (b *CreateIndexBuilder) SkipInitialScan() *CreateIndexBuilder
- func (b *CreateIndexBuilder) StopWords(words ...interface{}) *CreateIndexBuilder
- func (b *CreateIndexBuilder) Temporary(sec int) *CreateIndexBuilder
- type CursorBuilder
- type CursorStats
- type DelExArgs
- type DialHook
- type DictBuilder
- type DigestCmd
- func (cmd *DigestCmd) Args() []interface{}
- func (cmd *DigestCmd) Clone() Cmder
- func (cmd *DigestCmd) Err() error
- func (cmd *DigestCmd) FullName() string
- func (cmd *DigestCmd) GetCmdType() CmdType
- func (cmd *DigestCmd) Name() string
- func (cmd *DigestCmd) Result() (uint64, error)
- func (cmd *DigestCmd) SetErr(e error)
- func (cmd *DigestCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *DigestCmd) SetStepCount(stepCount int8)
- func (cmd *DigestCmd) SetVal(val uint64)
- func (cmd *DigestCmd) String() string
- func (cmd *DigestCmd) Val() uint64
- type Document
- type DropIndexBuilder
- type DurationCmd
- func (cmd *DurationCmd) Args() []interface{}
- func (cmd *DurationCmd) Clone() Cmder
- func (cmd *DurationCmd) Err() error
- func (cmd *DurationCmd) FullName() string
- func (cmd *DurationCmd) GetCmdType() CmdType
- func (cmd *DurationCmd) Name() string
- func (cmd *DurationCmd) Result() (time.Duration, error)
- func (cmd *DurationCmd) SetErr(e error)
- func (cmd *DurationCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *DurationCmd) SetStepCount(stepCount int8)
- func (cmd *DurationCmd) SetVal(val time.Duration)
- func (cmd *DurationCmd) String() string
- func (cmd *DurationCmd) Val() time.Duration
- type Engine
- type Error
- type ExpirationMode
- type ExpirationOption
- type ExplainBuilder
- type FTAggregateApply
- type FTAggregateGroupBy
- type FTAggregateLoad
- type FTAggregateOptions
- type FTAggregateReducer
- type FTAggregateResult
- type FTAggregateSortBy
- type FTAggregateWithCursor
- type FTAttribute
- type FTCreateOptions
- type FTDropIndexOptions
- type FTExplainOptions
- type FTFlatOptions
- type FTHNSWOptions
- type FTHybridApply
- type FTHybridCmd
- func (cmd *FTHybridCmd) Args() []interface{}
- func (cmd *FTHybridCmd) Clone() Cmder
- func (cmd *FTHybridCmd) CursorResult() (*FTHybridCursorResult, error)
- func (cmd *FTHybridCmd) CursorVal() *FTHybridCursorResult
- func (cmd *FTHybridCmd) Err() error
- func (cmd *FTHybridCmd) FullName() string
- func (cmd *FTHybridCmd) GetCmdType() CmdType
- func (cmd *FTHybridCmd) Name() string
- func (cmd *FTHybridCmd) RawResult() (interface{}, error)
- func (cmd *FTHybridCmd) RawVal() interface{}
- func (cmd *FTHybridCmd) Result() (FTHybridResult, error)
- func (cmd *FTHybridCmd) SetErr(e error)
- func (cmd *FTHybridCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *FTHybridCmd) SetStepCount(stepCount int8)
- func (cmd *FTHybridCmd) SetVal(val FTHybridResult)
- func (cmd *FTHybridCmd) String() string
- func (cmd *FTHybridCmd) Val() FTHybridResult
- type FTHybridCombineMethod
- type FTHybridCombineOptions
- type FTHybridCursorResult
- type FTHybridGroupBy
- type FTHybridOptions
- type FTHybridResult
- type FTHybridSearchExpression
- type FTHybridVectorExpression
- type FTHybridVectorMethod
- type FTHybridWithCursor
- type FTInfoBuilder
- type FTInfoCmd
- func (cmd *FTInfoCmd) Args() []interface{}
- func (cmd *FTInfoCmd) Clone() Cmder
- func (cmd *FTInfoCmd) Err() error
- func (cmd *FTInfoCmd) FullName() string
- func (cmd *FTInfoCmd) GetCmdType() CmdType
- func (cmd *FTInfoCmd) Name() string
- func (cmd *FTInfoCmd) RawResult() (interface{}, error)
- func (cmd *FTInfoCmd) RawVal() interface{}
- func (cmd *FTInfoCmd) Result() (FTInfoResult, error)
- func (cmd *FTInfoCmd) SetErr(e error)
- func (cmd *FTInfoCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *FTInfoCmd) SetStepCount(stepCount int8)
- func (cmd *FTInfoCmd) SetVal(val FTInfoResult)
- func (cmd *FTInfoCmd) String() string
- func (cmd *FTInfoCmd) Val() FTInfoResult
- type FTInfoResult
- type FTSearchCmd
- func (cmd *FTSearchCmd) Args() []interface{}
- func (cmd *FTSearchCmd) Clone() Cmder
- func (cmd *FTSearchCmd) Err() error
- func (cmd *FTSearchCmd) FullName() string
- func (cmd *FTSearchCmd) GetCmdType() CmdType
- func (cmd *FTSearchCmd) Name() string
- func (cmd *FTSearchCmd) RawResult() (interface{}, error)
- func (cmd *FTSearchCmd) RawVal() interface{}
- func (cmd *FTSearchCmd) Result() (FTSearchResult, error)
- func (cmd *FTSearchCmd) SetErr(e error)
- func (cmd *FTSearchCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *FTSearchCmd) SetStepCount(stepCount int8)
- func (cmd *FTSearchCmd) SetVal(val FTSearchResult)
- func (cmd *FTSearchCmd) String() string
- func (cmd *FTSearchCmd) Val() FTSearchResult
- type FTSearchFilter
- type FTSearchGeoFilter
- type FTSearchOptions
- type FTSearchResult
- type FTSearchReturn
- type FTSearchSortBy
- type FTSpellCheckCmd
- func (cmd *FTSpellCheckCmd) Args() []interface{}
- func (cmd *FTSpellCheckCmd) Clone() Cmder
- func (cmd *FTSpellCheckCmd) Err() error
- func (cmd *FTSpellCheckCmd) FullName() string
- func (cmd *FTSpellCheckCmd) GetCmdType() CmdType
- func (cmd *FTSpellCheckCmd) Name() string
- func (cmd *FTSpellCheckCmd) RawResult() (interface{}, error)
- func (cmd *FTSpellCheckCmd) RawVal() interface{}
- func (cmd *FTSpellCheckCmd) Result() ([]SpellCheckResult, error)
- func (cmd *FTSpellCheckCmd) SetErr(e error)
- func (cmd *FTSpellCheckCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *FTSpellCheckCmd) SetStepCount(stepCount int8)
- func (cmd *FTSpellCheckCmd) SetVal(val []SpellCheckResult)
- func (cmd *FTSpellCheckCmd) String() string
- func (cmd *FTSpellCheckCmd) Val() []SpellCheckResult
- type FTSpellCheckOptions
- type FTSpellCheckTerms
- type FTSynDumpCmd
- func (cmd *FTSynDumpCmd) Args() []interface{}
- func (cmd *FTSynDumpCmd) Clone() Cmder
- func (cmd *FTSynDumpCmd) Err() error
- func (cmd *FTSynDumpCmd) FullName() string
- func (cmd *FTSynDumpCmd) GetCmdType() CmdType
- func (cmd *FTSynDumpCmd) Name() string
- func (cmd *FTSynDumpCmd) RawResult() (interface{}, error)
- func (cmd *FTSynDumpCmd) RawVal() interface{}
- func (cmd *FTSynDumpCmd) Result() ([]FTSynDumpResult, error)
- func (cmd *FTSynDumpCmd) SetErr(e error)
- func (cmd *FTSynDumpCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *FTSynDumpCmd) SetStepCount(stepCount int8)
- func (cmd *FTSynDumpCmd) SetVal(val []FTSynDumpResult)
- func (cmd *FTSynDumpCmd) String() string
- func (cmd *FTSynDumpCmd) Val() []FTSynDumpResult
- type FTSynDumpResult
- type FTSynUpdateOptions
- type FTVamanaOptions
- type FTVectorArgs
- type FailoverOptions
- type FieldSchema
- type FieldStatistic
- type FilterBy
- type FloatCmd
- func (cmd *FloatCmd) Args() []interface{}
- func (cmd *FloatCmd) Clone() Cmder
- func (cmd *FloatCmd) Err() error
- func (cmd *FloatCmd) FullName() string
- func (cmd *FloatCmd) GetCmdType() CmdType
- func (cmd *FloatCmd) Name() string
- func (cmd *FloatCmd) Result() (float64, error)
- func (cmd *FloatCmd) SetErr(e error)
- func (cmd *FloatCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *FloatCmd) SetStepCount(stepCount int8)
- func (cmd *FloatCmd) SetVal(val float64)
- func (cmd *FloatCmd) String() string
- func (cmd *FloatCmd) Val() float64
- type FloatSliceCmd
- func (cmd *FloatSliceCmd) Args() []interface{}
- func (cmd *FloatSliceCmd) Clone() Cmder
- func (cmd *FloatSliceCmd) Err() error
- func (cmd *FloatSliceCmd) FullName() string
- func (cmd *FloatSliceCmd) GetCmdType() CmdType
- func (cmd *FloatSliceCmd) Name() string
- func (cmd *FloatSliceCmd) Result() ([]float64, error)
- func (cmd *FloatSliceCmd) SetErr(e error)
- func (cmd *FloatSliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *FloatSliceCmd) SetStepCount(stepCount int8)
- func (cmd *FloatSliceCmd) SetVal(val []float64)
- func (cmd *FloatSliceCmd) String() string
- func (cmd *FloatSliceCmd) Val() []float64
- type Function
- type FunctionListCmd
- func (cmd *FunctionListCmd) Args() []interface{}
- func (cmd *FunctionListCmd) Clone() Cmder
- func (cmd *FunctionListCmd) Err() error
- func (cmd *FunctionListCmd) First() (*Library, error)
- func (cmd *FunctionListCmd) FullName() string
- func (cmd *FunctionListCmd) GetCmdType() CmdType
- func (cmd *FunctionListCmd) Name() string
- func (cmd *FunctionListCmd) Result() ([]Library, error)
- func (cmd *FunctionListCmd) SetErr(e error)
- func (cmd *FunctionListCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *FunctionListCmd) SetStepCount(stepCount int8)
- func (cmd *FunctionListCmd) SetVal(val []Library)
- func (cmd *FunctionListCmd) String() string
- func (cmd *FunctionListCmd) Val() []Library
- type FunctionListQuery
- type FunctionStats
- type FunctionStatsCmd
- func (cmd *FunctionStatsCmd) Args() []interface{}
- func (cmd *FunctionStatsCmd) Clone() Cmder
- func (cmd *FunctionStatsCmd) Err() error
- func (cmd *FunctionStatsCmd) FullName() string
- func (cmd *FunctionStatsCmd) GetCmdType() CmdType
- func (cmd *FunctionStatsCmd) Name() string
- func (cmd *FunctionStatsCmd) Result() (FunctionStats, error)
- func (cmd *FunctionStatsCmd) SetErr(e error)
- func (cmd *FunctionStatsCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *FunctionStatsCmd) SetStepCount(stepCount int8)
- func (cmd *FunctionStatsCmd) SetVal(val FunctionStats)
- func (cmd *FunctionStatsCmd) String() string
- func (cmd *FunctionStatsCmd) Val() FunctionStats
- type GCStats
- type GenericCmdable
- type GeoCmdable
- type GeoLocation
- type GeoLocationCmd
- func (cmd *GeoLocationCmd) Args() []interface{}
- func (cmd *GeoLocationCmd) Clone() Cmder
- func (cmd *GeoLocationCmd) Err() error
- func (cmd *GeoLocationCmd) FullName() string
- func (cmd *GeoLocationCmd) GetCmdType() CmdType
- func (cmd *GeoLocationCmd) Name() string
- func (cmd *GeoLocationCmd) Result() ([]GeoLocation, error)
- func (cmd *GeoLocationCmd) SetErr(e error)
- func (cmd *GeoLocationCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *GeoLocationCmd) SetStepCount(stepCount int8)
- func (cmd *GeoLocationCmd) SetVal(locations []GeoLocation)
- func (cmd *GeoLocationCmd) String() string
- func (cmd *GeoLocationCmd) Val() []GeoLocation
- type GeoPos
- type GeoPosCmd
- func (cmd *GeoPosCmd) Args() []interface{}
- func (cmd *GeoPosCmd) Clone() Cmder
- func (cmd *GeoPosCmd) Err() error
- func (cmd *GeoPosCmd) FullName() string
- func (cmd *GeoPosCmd) GetCmdType() CmdType
- func (cmd *GeoPosCmd) Name() string
- func (cmd *GeoPosCmd) Result() ([]*GeoPos, error)
- func (cmd *GeoPosCmd) SetErr(e error)
- func (cmd *GeoPosCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *GeoPosCmd) SetStepCount(stepCount int8)
- func (cmd *GeoPosCmd) SetVal(val []*GeoPos)
- func (cmd *GeoPosCmd) String() string
- func (cmd *GeoPosCmd) Val() []*GeoPos
- type GeoRadiusQuery
- type GeoSearchLocationCmd
- func (cmd *GeoSearchLocationCmd) Args() []interface{}
- func (cmd *GeoSearchLocationCmd) Clone() Cmder
- func (cmd *GeoSearchLocationCmd) Err() error
- func (cmd *GeoSearchLocationCmd) FullName() string
- func (cmd *GeoSearchLocationCmd) GetCmdType() CmdType
- func (cmd *GeoSearchLocationCmd) Name() string
- func (cmd *GeoSearchLocationCmd) Result() ([]GeoLocation, error)
- func (cmd *GeoSearchLocationCmd) SetErr(e error)
- func (cmd *GeoSearchLocationCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *GeoSearchLocationCmd) SetStepCount(stepCount int8)
- func (cmd *GeoSearchLocationCmd) SetVal(val []GeoLocation)
- func (cmd *GeoSearchLocationCmd) String() string
- func (cmd *GeoSearchLocationCmd) Val() []GeoLocation
- type GeoSearchLocationQuery
- type GeoSearchQuery
- type GeoSearchStoreQuery
- type HExpireArgs
- type HGetEXExpirationType
- type HGetEXOptions
- type HSetEXCondition
- type HSetEXExpirationType
- type HSetEXOptions
- type HashCmdable
- type Hook
- type HotKeysCmd
- func (cmd *HotKeysCmd) Args() []interface{}
- func (cmd *HotKeysCmd) Clone() Cmder
- func (cmd *HotKeysCmd) Err() error
- func (cmd *HotKeysCmd) FullName() string
- func (cmd *HotKeysCmd) GetCmdType() CmdType
- func (cmd *HotKeysCmd) Name() string
- func (cmd *HotKeysCmd) Result() (*HotKeysResult, error)
- func (cmd *HotKeysCmd) SetErr(e error)
- func (cmd *HotKeysCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *HotKeysCmd) SetStepCount(stepCount int8)
- func (cmd *HotKeysCmd) SetVal(val *HotKeysResult)
- func (cmd *HotKeysCmd) String() string
- func (cmd *HotKeysCmd) Val() *HotKeysResult
- type HotKeysKeyEntry
- type HotKeysMetric
- type HotKeysResult
- type HotKeysSlotRange
- type HotKeysStartArgs
- type HyperLogLogCmdable
- type IndexDefinition
- type IndexErrors
- type InfoCmd
- func (cmd *InfoCmd) Args() []interface{}
- func (cmd *InfoCmd) Clone() Cmder
- func (cmd *InfoCmd) Err() error
- func (cmd *InfoCmd) FullName() string
- func (cmd *InfoCmd) GetCmdType() CmdType
- func (cmd *InfoCmd) Item(section, key string) string
- func (cmd *InfoCmd) Name() string
- func (cmd *InfoCmd) Result() (map[string]map[string]string, error)
- func (cmd *InfoCmd) SetErr(e error)
- func (cmd *InfoCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *InfoCmd) SetStepCount(stepCount int8)
- func (cmd *InfoCmd) SetVal(val map[string]map[string]string)
- func (cmd *InfoCmd) String() string
- func (cmd *InfoCmd) Val() map[string]map[string]string
- type IntCmd
- func (cmd *IntCmd) Args() []interface{}
- func (cmd *IntCmd) Clone() Cmder
- func (cmd *IntCmd) Err() error
- func (cmd *IntCmd) FullName() string
- func (cmd *IntCmd) GetCmdType() CmdType
- func (cmd *IntCmd) Name() string
- func (cmd *IntCmd) Result() (int64, error)
- func (cmd *IntCmd) SetErr(e error)
- func (cmd *IntCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *IntCmd) SetStepCount(stepCount int8)
- func (cmd *IntCmd) SetVal(val int64)
- func (cmd *IntCmd) String() string
- func (cmd *IntCmd) Uint64() (uint64, error)
- func (cmd *IntCmd) Val() int64
- type IntPointerSliceCmd
- func (cmd *IntPointerSliceCmd) Args() []interface{}
- func (cmd *IntPointerSliceCmd) Clone() Cmder
- func (cmd *IntPointerSliceCmd) Err() error
- func (cmd *IntPointerSliceCmd) FullName() string
- func (cmd *IntPointerSliceCmd) GetCmdType() CmdType
- func (cmd *IntPointerSliceCmd) Name() string
- func (cmd *IntPointerSliceCmd) Result() ([]*int64, error)
- func (cmd *IntPointerSliceCmd) SetErr(e error)
- func (cmd *IntPointerSliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *IntPointerSliceCmd) SetStepCount(stepCount int8)
- func (cmd *IntPointerSliceCmd) SetVal(val []*int64)
- func (cmd *IntPointerSliceCmd) String() string
- func (cmd *IntPointerSliceCmd) Val() []*int64
- type IntSliceCmd
- func (cmd *IntSliceCmd) Args() []interface{}
- func (cmd *IntSliceCmd) Clone() Cmder
- func (cmd *IntSliceCmd) Err() error
- func (cmd *IntSliceCmd) FullName() string
- func (cmd *IntSliceCmd) GetCmdType() CmdType
- func (cmd *IntSliceCmd) Name() string
- func (cmd *IntSliceCmd) Result() ([]int64, error)
- func (cmd *IntSliceCmd) SetErr(e error)
- func (cmd *IntSliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *IntSliceCmd) SetStepCount(stepCount int8)
- func (cmd *IntSliceCmd) SetVal(val []int64)
- func (cmd *IntSliceCmd) String() string
- func (cmd *IntSliceCmd) Val() []int64
- type JSONArrIndexArgs
- type JSONArrTrimArgs
- type JSONCmd
- func (cmd *JSONCmd) Args() []interface{}
- func (cmd *JSONCmd) Clone() Cmder
- func (cmd *JSONCmd) Err() error
- func (cmd *JSONCmd) Expanded() (interface{}, error)
- func (cmd *JSONCmd) FullName() string
- func (cmd *JSONCmd) GetCmdType() CmdType
- func (cmd *JSONCmd) Name() string
- func (cmd *JSONCmd) Result() (string, error)
- func (cmd *JSONCmd) SetErr(e error)
- func (cmd *JSONCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *JSONCmd) SetStepCount(stepCount int8)
- func (cmd *JSONCmd) SetVal(val string)
- func (cmd *JSONCmd) String() string
- func (cmd *JSONCmd) Val() string
- type JSONCmdable
- type JSONGetArgs
- type JSONSetArgs
- type JSONSliceCmd
- func (cmd *JSONSliceCmd) Args() []interface{}
- func (cmd *JSONSliceCmd) Clone() Cmder
- func (cmd *JSONSliceCmd) Err() error
- func (cmd *JSONSliceCmd) FullName() string
- func (cmd *JSONSliceCmd) GetCmdType() CmdType
- func (cmd *JSONSliceCmd) Name() string
- func (cmd *JSONSliceCmd) Result() ([]interface{}, error)
- func (cmd *JSONSliceCmd) SetErr(e error)
- func (cmd *JSONSliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *JSONSliceCmd) SetStepCount(stepCount int8)
- func (cmd *JSONSliceCmd) SetVal(val []interface{})
- func (cmd *JSONSliceCmd) String() string
- func (cmd *JSONSliceCmd) Val() []interface{}
- type KeyFlags
- type KeyFlagsCmd
- func (cmd *KeyFlagsCmd) Args() []interface{}
- func (cmd *KeyFlagsCmd) Clone() Cmder
- func (cmd *KeyFlagsCmd) Err() error
- func (cmd *KeyFlagsCmd) FullName() string
- func (cmd *KeyFlagsCmd) GetCmdType() CmdType
- func (cmd *KeyFlagsCmd) Name() string
- func (cmd *KeyFlagsCmd) Result() ([]KeyFlags, error)
- func (cmd *KeyFlagsCmd) SetErr(e error)
- func (cmd *KeyFlagsCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *KeyFlagsCmd) SetStepCount(stepCount int8)
- func (cmd *KeyFlagsCmd) SetVal(val []KeyFlags)
- func (cmd *KeyFlagsCmd) String() string
- func (cmd *KeyFlagsCmd) Val() []KeyFlags
- type KeyValue
- type KeyValueSliceCmd
- func (cmd *KeyValueSliceCmd) Args() []interface{}
- func (cmd *KeyValueSliceCmd) Clone() Cmder
- func (cmd *KeyValueSliceCmd) Err() error
- func (cmd *KeyValueSliceCmd) FullName() string
- func (cmd *KeyValueSliceCmd) GetCmdType() CmdType
- func (cmd *KeyValueSliceCmd) Name() string
- func (cmd *KeyValueSliceCmd) Result() ([]KeyValue, error)
- func (cmd *KeyValueSliceCmd) SetErr(e error)
- func (cmd *KeyValueSliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *KeyValueSliceCmd) SetStepCount(stepCount int8)
- func (cmd *KeyValueSliceCmd) SetVal(val []KeyValue)
- func (cmd *KeyValueSliceCmd) String() string
- func (cmd *KeyValueSliceCmd) Val() []KeyValue
- type KeyValuesCmd
- func (cmd *KeyValuesCmd) Args() []interface{}
- func (cmd *KeyValuesCmd) Clone() Cmder
- func (cmd *KeyValuesCmd) Err() error
- func (cmd *KeyValuesCmd) FullName() string
- func (cmd *KeyValuesCmd) GetCmdType() CmdType
- func (cmd *KeyValuesCmd) Name() string
- func (cmd *KeyValuesCmd) Result() (string, []string, error)
- func (cmd *KeyValuesCmd) SetErr(e error)
- func (cmd *KeyValuesCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *KeyValuesCmd) SetStepCount(stepCount int8)
- func (cmd *KeyValuesCmd) SetVal(key string, val []string)
- func (cmd *KeyValuesCmd) String() string
- func (cmd *KeyValuesCmd) Val() (string, []string)
- type LCSCmd
- func (cmd *LCSCmd) Args() []interface{}
- func (cmd *LCSCmd) Clone() Cmder
- func (cmd *LCSCmd) Err() error
- func (cmd *LCSCmd) FullName() string
- func (cmd *LCSCmd) GetCmdType() CmdType
- func (cmd *LCSCmd) Name() string
- func (cmd *LCSCmd) Result() (*LCSMatch, error)
- func (cmd *LCSCmd) SetErr(e error)
- func (cmd *LCSCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *LCSCmd) SetStepCount(stepCount int8)
- func (cmd *LCSCmd) SetVal(val *LCSMatch)
- func (cmd *LCSCmd) String() string
- func (cmd *LCSCmd) Val() *LCSMatch
- type LCSMatch
- type LCSMatchedPosition
- type LCSPosition
- type LCSQuery
- type LPosArgs
- type Latency
- type LatencyCmd
- func (cmd *LatencyCmd) Args() []interface{}
- func (cmd *LatencyCmd) Clone() Cmder
- func (cmd *LatencyCmd) Err() error
- func (cmd *LatencyCmd) FullName() string
- func (cmd *LatencyCmd) GetCmdType() CmdType
- func (cmd *LatencyCmd) Name() string
- func (cmd *LatencyCmd) Result() ([]Latency, error)
- func (cmd *LatencyCmd) SetErr(e error)
- func (cmd *LatencyCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *LatencyCmd) SetStepCount(stepCount int8)
- func (cmd *LatencyCmd) SetVal(val []Latency)
- func (cmd *LatencyCmd) String() string
- func (cmd *LatencyCmd) Val() []Latency
- type Library
- type LibraryInfo
- type Limiter
- type ListCmdable
- type MSetEXArgs
- type MapMapStringInterfaceCmd
- func (cmd *MapMapStringInterfaceCmd) Args() []interface{}
- func (cmd *MapMapStringInterfaceCmd) Clone() Cmder
- func (cmd *MapMapStringInterfaceCmd) Err() error
- func (cmd *MapMapStringInterfaceCmd) FullName() string
- func (cmd *MapMapStringInterfaceCmd) GetCmdType() CmdType
- func (cmd *MapMapStringInterfaceCmd) Name() string
- func (cmd *MapMapStringInterfaceCmd) Result() (map[string]interface{}, error)
- func (cmd *MapMapStringInterfaceCmd) SetErr(e error)
- func (cmd *MapMapStringInterfaceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *MapMapStringInterfaceCmd) SetStepCount(stepCount int8)
- func (cmd *MapMapStringInterfaceCmd) SetVal(val map[string]interface{})
- func (cmd *MapMapStringInterfaceCmd) String() string
- func (cmd *MapMapStringInterfaceCmd) Val() map[string]interface{}
- type MapStringIntCmd
- func (cmd *MapStringIntCmd) Args() []interface{}
- func (cmd *MapStringIntCmd) Clone() Cmder
- func (cmd *MapStringIntCmd) Err() error
- func (cmd *MapStringIntCmd) FullName() string
- func (cmd *MapStringIntCmd) GetCmdType() CmdType
- func (cmd *MapStringIntCmd) Name() string
- func (cmd *MapStringIntCmd) Result() (map[string]int64, error)
- func (cmd *MapStringIntCmd) SetErr(e error)
- func (cmd *MapStringIntCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *MapStringIntCmd) SetStepCount(stepCount int8)
- func (cmd *MapStringIntCmd) SetVal(val map[string]int64)
- func (cmd *MapStringIntCmd) String() string
- func (cmd *MapStringIntCmd) Val() map[string]int64
- type MapStringInterfaceCmd
- func (cmd *MapStringInterfaceCmd) Args() []interface{}
- func (cmd *MapStringInterfaceCmd) Clone() Cmder
- func (cmd *MapStringInterfaceCmd) Err() error
- func (cmd *MapStringInterfaceCmd) FullName() string
- func (cmd *MapStringInterfaceCmd) GetCmdType() CmdType
- func (cmd *MapStringInterfaceCmd) Name() string
- func (cmd *MapStringInterfaceCmd) Result() (map[string]interface{}, error)
- func (cmd *MapStringInterfaceCmd) SetErr(e error)
- func (cmd *MapStringInterfaceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *MapStringInterfaceCmd) SetStepCount(stepCount int8)
- func (cmd *MapStringInterfaceCmd) SetVal(val map[string]interface{})
- func (cmd *MapStringInterfaceCmd) String() string
- func (cmd *MapStringInterfaceCmd) Val() map[string]interface{}
- type MapStringInterfaceSliceCmd
- func (cmd *MapStringInterfaceSliceCmd) Args() []interface{}
- func (cmd *MapStringInterfaceSliceCmd) Clone() Cmder
- func (cmd *MapStringInterfaceSliceCmd) Err() error
- func (cmd *MapStringInterfaceSliceCmd) FullName() string
- func (cmd *MapStringInterfaceSliceCmd) GetCmdType() CmdType
- func (cmd *MapStringInterfaceSliceCmd) Name() string
- func (cmd *MapStringInterfaceSliceCmd) Result() ([]map[string]interface{}, error)
- func (cmd *MapStringInterfaceSliceCmd) SetErr(e error)
- func (cmd *MapStringInterfaceSliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *MapStringInterfaceSliceCmd) SetStepCount(stepCount int8)
- func (cmd *MapStringInterfaceSliceCmd) SetVal(val []map[string]interface{})
- func (cmd *MapStringInterfaceSliceCmd) String() string
- func (cmd *MapStringInterfaceSliceCmd) Val() []map[string]interface{}
- type MapStringSliceInterfaceCmd
- func (cmd *MapStringSliceInterfaceCmd) Args() []interface{}
- func (cmd *MapStringSliceInterfaceCmd) Clone() Cmder
- func (cmd *MapStringSliceInterfaceCmd) Err() error
- func (cmd *MapStringSliceInterfaceCmd) FullName() string
- func (cmd *MapStringSliceInterfaceCmd) GetCmdType() CmdType
- func (cmd *MapStringSliceInterfaceCmd) Name() string
- func (cmd *MapStringSliceInterfaceCmd) Result() (map[string][]interface{}, error)
- func (cmd *MapStringSliceInterfaceCmd) SetErr(e error)
- func (cmd *MapStringSliceInterfaceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *MapStringSliceInterfaceCmd) SetStepCount(stepCount int8)
- func (cmd *MapStringSliceInterfaceCmd) SetVal(val map[string][]interface{})
- func (cmd *MapStringSliceInterfaceCmd) String() string
- func (cmd *MapStringSliceInterfaceCmd) Val() map[string][]interface{}
- type MapStringStringCmd
- func (cmd *MapStringStringCmd) Args() []interface{}
- func (cmd *MapStringStringCmd) Clone() Cmder
- func (cmd *MapStringStringCmd) Err() error
- func (cmd *MapStringStringCmd) FullName() string
- func (cmd *MapStringStringCmd) GetCmdType() CmdType
- func (cmd *MapStringStringCmd) Name() string
- func (cmd *MapStringStringCmd) Result() (map[string]string, error)
- func (cmd *MapStringStringCmd) Scan(dest interface{}) error
- func (cmd *MapStringStringCmd) SetErr(e error)
- func (cmd *MapStringStringCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *MapStringStringCmd) SetStepCount(stepCount int8)
- func (cmd *MapStringStringCmd) SetVal(val map[string]string)
- func (cmd *MapStringStringCmd) String() string
- func (cmd *MapStringStringCmd) Val() map[string]string
- type MapStringStringSliceCmd
- func (cmd *MapStringStringSliceCmd) Args() []interface{}
- func (cmd *MapStringStringSliceCmd) Clone() Cmder
- func (cmd *MapStringStringSliceCmd) Err() error
- func (cmd *MapStringStringSliceCmd) FullName() string
- func (cmd *MapStringStringSliceCmd) GetCmdType() CmdType
- func (cmd *MapStringStringSliceCmd) Name() string
- func (cmd *MapStringStringSliceCmd) Result() ([]map[string]string, error)
- func (cmd *MapStringStringSliceCmd) SetErr(e error)
- func (cmd *MapStringStringSliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *MapStringStringSliceCmd) SetStepCount(stepCount int8)
- func (cmd *MapStringStringSliceCmd) SetVal(val []map[string]string)
- func (cmd *MapStringStringSliceCmd) String() string
- func (cmd *MapStringStringSliceCmd) Val() []map[string]string
- type Message
- type ModuleLoadexConfig
- type MonitorCmd
- func (cmd *MonitorCmd) Args() []interface{}
- func (cmd *MonitorCmd) Clone() Cmder
- func (cmd *MonitorCmd) Err() error
- func (cmd *MonitorCmd) FullName() string
- func (cmd *MonitorCmd) GetCmdType() CmdType
- func (cmd *MonitorCmd) Name() string
- func (cmd *MonitorCmd) SetErr(e error)
- func (cmd *MonitorCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *MonitorCmd) SetStepCount(stepCount int8)
- func (cmd *MonitorCmd) Start()
- func (cmd *MonitorCmd) Stop()
- func (cmd *MonitorCmd) String() string
- type MonitorStatus
- type Node
- type OTelPoolRegistrar
- type OTelRecorder
- type Options
- type Pipeline
- func (c Pipeline) ACLCat(ctx context.Context) *StringSliceCmd
- func (c Pipeline) ACLCatArgs(ctx context.Context, options *ACLCatArgs) *StringSliceCmd
- func (c Pipeline) ACLDelUser(ctx context.Context, username string) *IntCmd
- func (c Pipeline) ACLDryRun(ctx context.Context, username string, command ...interface{}) *StringCmd
- func (c Pipeline) ACLGenPass(ctx context.Context, bit int) *StringCmd
- func (c Pipeline) ACLList(ctx context.Context) *StringSliceCmd
- func (c Pipeline) ACLLog(ctx context.Context, count int64) *ACLLogCmd
- func (c Pipeline) ACLLogReset(ctx context.Context) *StatusCmd
- func (c Pipeline) ACLSetUser(ctx context.Context, username string, rules ...string) *StatusCmd
- func (c Pipeline) ACLUsers(ctx context.Context) *StringSliceCmd
- func (c Pipeline) ACLWhoAmI(ctx context.Context) *StringCmd
- func (c Pipeline) Append(ctx context.Context, key, value string) *IntCmd
- func (c Pipeline) Auth(ctx context.Context, password string) *StatusCmd
- func (c Pipeline) AuthACL(ctx context.Context, username, password string) *StatusCmd
- func (c Pipeline) BFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Pipeline) BFCard(ctx context.Context, key string) *IntCmd
- func (c Pipeline) BFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Pipeline) BFInfo(ctx context.Context, key string) *BFInfoCmd
- func (c Pipeline) BFInfoArg(ctx context.Context, key, option string) *BFInfoCmd
- func (c Pipeline) BFInfoCapacity(ctx context.Context, key string) *BFInfoCmd
- func (c Pipeline) BFInfoExpansion(ctx context.Context, key string) *BFInfoCmd
- func (c Pipeline) BFInfoFilters(ctx context.Context, key string) *BFInfoCmd
- func (c Pipeline) BFInfoItems(ctx context.Context, key string) *BFInfoCmd
- func (c Pipeline) BFInfoSize(ctx context.Context, key string) *BFInfoCmd
- func (c Pipeline) BFInsert(ctx context.Context, key string, options *BFInsertOptions, ...) *BoolSliceCmd
- func (c Pipeline) BFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c Pipeline) BFMAdd(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Pipeline) BFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Pipeline) BFReserve(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c Pipeline) BFReserveExpansion(ctx context.Context, key string, errorRate float64, capacity, expansion int64) *StatusCmd
- func (c Pipeline) BFReserveNonScaling(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c Pipeline) BFReserveWithArgs(ctx context.Context, key string, options *BFReserveOptions) *StatusCmd
- func (c Pipeline) BFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c Pipeline) BLMPop(ctx context.Context, timeout time.Duration, direction string, count int64, ...) *KeyValuesCmd
- func (c Pipeline) BLMove(ctx context.Context, source, destination, srcpos, destpos string, ...) *StringCmd
- func (c Pipeline) BLPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c Pipeline) BRPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c Pipeline) BRPopLPush(ctx context.Context, source, destination string, timeout time.Duration) *StringCmddeprecated
- func (c Pipeline) BZMPop(ctx context.Context, timeout time.Duration, order string, count int64, ...) *ZSliceWithKeyCmd
- func (c Pipeline) BZPopMax(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c Pipeline) BZPopMin(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c *Pipeline) BatchProcess(ctx context.Context, cmd ...Cmder) error
- func (c Pipeline) BgRewriteAOF(ctx context.Context) *StatusCmd
- func (c Pipeline) BgSave(ctx context.Context) *StatusCmd
- func (c Pipeline) BitCount(ctx context.Context, key string, bitCount *BitCount) *IntCmd
- func (c Pipeline) BitField(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c Pipeline) BitFieldRO(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c Pipeline) BitOpAnd(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Pipeline) BitOpAndOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Pipeline) BitOpDiff(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Pipeline) BitOpDiff1(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Pipeline) BitOpNot(ctx context.Context, destKey string, key string) *IntCmd
- func (c Pipeline) BitOpOne(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Pipeline) BitOpOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Pipeline) BitOpXor(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Pipeline) BitPos(ctx context.Context, key string, bit int64, pos ...int64) *IntCmd
- func (c Pipeline) BitPosSpan(ctx context.Context, key string, bit int8, start, end int64, span string) *IntCmd
- func (c Pipeline) CFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Pipeline) CFAddNX(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Pipeline) CFCount(ctx context.Context, key string, element interface{}) *IntCmd
- func (c Pipeline) CFDel(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Pipeline) CFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Pipeline) CFInfo(ctx context.Context, key string) *CFInfoCmd
- func (c Pipeline) CFInsert(ctx context.Context, key string, options *CFInsertOptions, ...) *BoolSliceCmd
- func (c Pipeline) CFInsertNX(ctx context.Context, key string, options *CFInsertOptions, ...) *IntSliceCmd
- func (c Pipeline) CFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c Pipeline) CFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Pipeline) CFReserve(ctx context.Context, key string, capacity int64) *StatusCmd
- func (c Pipeline) CFReserveBucketSize(ctx context.Context, key string, capacity int64, bucketsize int64) *StatusCmd
- func (c Pipeline) CFReserveExpansion(ctx context.Context, key string, capacity int64, expansion int64) *StatusCmd
- func (c Pipeline) CFReserveMaxIterations(ctx context.Context, key string, capacity int64, maxiterations int64) *StatusCmd
- func (c Pipeline) CFReserveWithArgs(ctx context.Context, key string, options *CFReserveOptions) *StatusCmd
- func (c Pipeline) CFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c Pipeline) CMSIncrBy(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Pipeline) CMSInfo(ctx context.Context, key string) *CMSInfoCmd
- func (c Pipeline) CMSInitByDim(ctx context.Context, key string, width, depth int64) *StatusCmd
- func (c Pipeline) CMSInitByProb(ctx context.Context, key string, errorRate, probability float64) *StatusCmd
- func (c Pipeline) CMSMerge(ctx context.Context, destKey string, sourceKeys ...string) *StatusCmd
- func (c Pipeline) CMSMergeWithWeight(ctx context.Context, destKey string, sourceKeys map[string]int64) *StatusCmd
- func (c Pipeline) CMSQuery(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Pipeline) ClientGetName(ctx context.Context) *StringCmd
- func (c Pipeline) ClientID(ctx context.Context) *IntCmd
- func (c Pipeline) ClientInfo(ctx context.Context) *ClientInfoCmd
- func (c Pipeline) ClientKill(ctx context.Context, ipPort string) *StatusCmd
- func (c Pipeline) ClientKillByFilter(ctx context.Context, keys ...string) *IntCmd
- func (c Pipeline) ClientList(ctx context.Context) *StringCmd
- func (c Pipeline) ClientMaintNotifications(ctx context.Context, enabled bool, endpointType string) *StatusCmd
- func (c Pipeline) ClientPause(ctx context.Context, dur time.Duration) *BoolCmd
- func (c Pipeline) ClientSetInfo(ctx context.Context, info LibraryInfo) *StatusCmd
- func (c Pipeline) ClientSetName(ctx context.Context, name string) *BoolCmd
- func (c Pipeline) ClientUnblock(ctx context.Context, id int64) *IntCmd
- func (c Pipeline) ClientUnblockWithError(ctx context.Context, id int64) *IntCmd
- func (c Pipeline) ClientUnpause(ctx context.Context) *BoolCmd
- func (c Pipeline) ClusterAddSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c Pipeline) ClusterAddSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c Pipeline) ClusterCountFailureReports(ctx context.Context, nodeID string) *IntCmd
- func (c Pipeline) ClusterCountKeysInSlot(ctx context.Context, slot int) *IntCmd
- func (c Pipeline) ClusterDelSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c Pipeline) ClusterDelSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c Pipeline) ClusterFailover(ctx context.Context) *StatusCmd
- func (c Pipeline) ClusterForget(ctx context.Context, nodeID string) *StatusCmd
- func (c Pipeline) ClusterGetKeysInSlot(ctx context.Context, slot int, count int) *StringSliceCmd
- func (c Pipeline) ClusterInfo(ctx context.Context) *StringCmd
- func (c Pipeline) ClusterKeySlot(ctx context.Context, key string) *IntCmd
- func (c Pipeline) ClusterLinks(ctx context.Context) *ClusterLinksCmd
- func (c Pipeline) ClusterMeet(ctx context.Context, host, port string) *StatusCmd
- func (c Pipeline) ClusterMyID(ctx context.Context) *StringCmd
- func (c Pipeline) ClusterMyShardID(ctx context.Context) *StringCmd
- func (c Pipeline) ClusterNodes(ctx context.Context) *StringCmd
- func (c Pipeline) ClusterReplicate(ctx context.Context, nodeID string) *StatusCmd
- func (c Pipeline) ClusterResetHard(ctx context.Context) *StatusCmd
- func (c Pipeline) ClusterResetSoft(ctx context.Context) *StatusCmd
- func (c Pipeline) ClusterSaveConfig(ctx context.Context) *StatusCmd
- func (c Pipeline) ClusterShards(ctx context.Context) *ClusterShardsCmd
- func (c Pipeline) ClusterSlaves(ctx context.Context, nodeID string) *StringSliceCmddeprecated
- func (c Pipeline) ClusterSlots(ctx context.Context) *ClusterSlotsCmddeprecated
- func (c *Pipeline) Cmds() []Cmder
- func (c Pipeline) Command(ctx context.Context) *CommandsInfoCmd
- func (c Pipeline) CommandGetKeys(ctx context.Context, commands ...interface{}) *StringSliceCmd
- func (c Pipeline) CommandGetKeysAndFlags(ctx context.Context, commands ...interface{}) *KeyFlagsCmd
- func (c Pipeline) CommandList(ctx context.Context, filter *FilterBy) *StringSliceCmd
- func (c Pipeline) ConfigGet(ctx context.Context, parameter string) *MapStringStringCmd
- func (c Pipeline) ConfigResetStat(ctx context.Context) *StatusCmd
- func (c Pipeline) ConfigRewrite(ctx context.Context) *StatusCmd
- func (c Pipeline) ConfigSet(ctx context.Context, parameter, value string) *StatusCmd
- func (c Pipeline) Copy(ctx context.Context, sourceKey, destKey string, db int, replace bool) *IntCmd
- func (c Pipeline) DBSize(ctx context.Context) *IntCmd
- func (c Pipeline) DebugObject(ctx context.Context, key string) *StringCmd
- func (c Pipeline) Decr(ctx context.Context, key string) *IntCmd
- func (c Pipeline) DecrBy(ctx context.Context, key string, decrement int64) *IntCmd
- func (c Pipeline) Del(ctx context.Context, keys ...string) *IntCmd
- func (c Pipeline) DelExArgs(ctx context.Context, key string, a DelExArgs) *IntCmd
- func (c Pipeline) Digest(ctx context.Context, key string) *DigestCmd
- func (c *Pipeline) Discard()
- func (c *Pipeline) Do(ctx context.Context, args ...interface{}) *Cmd
- func (c Pipeline) Dump(ctx context.Context, key string) *StringCmd
- func (c Pipeline) Echo(ctx context.Context, message interface{}) *StringCmd
- func (c Pipeline) Eval(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c Pipeline) EvalRO(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c Pipeline) EvalSha(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c Pipeline) EvalShaRO(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c *Pipeline) Exec(ctx context.Context) ([]Cmder, error)
- func (c Pipeline) Exists(ctx context.Context, keys ...string) *IntCmd
- func (c Pipeline) Expire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Pipeline) ExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c Pipeline) ExpireGT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Pipeline) ExpireLT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Pipeline) ExpireNX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Pipeline) ExpireTime(ctx context.Context, key string) *DurationCmd
- func (c Pipeline) ExpireXX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Pipeline) FCall(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Pipeline) FCallRO(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Pipeline) FCallRo(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Pipeline) FTAggregate(ctx context.Context, index string, query string) *MapStringInterfaceCmd
- func (c Pipeline) FTAggregateWithArgs(ctx context.Context, index string, query string, options *FTAggregateOptions) *AggregateCmd
- func (c Pipeline) FTAliasAdd(ctx context.Context, index string, alias string) *StatusCmd
- func (c Pipeline) FTAliasDel(ctx context.Context, alias string) *StatusCmd
- func (c Pipeline) FTAliasUpdate(ctx context.Context, index string, alias string) *StatusCmd
- func (c Pipeline) FTAlter(ctx context.Context, index string, skipInitialScan bool, ...) *StatusCmd
- func (c Pipeline) FTConfigGet(ctx context.Context, option string) *MapMapStringInterfaceCmddeprecated
- func (c Pipeline) FTConfigSet(ctx context.Context, option string, value interface{}) *StatusCmddeprecated
- func (c Pipeline) FTCreate(ctx context.Context, index string, options *FTCreateOptions, ...) *StatusCmd
- func (c Pipeline) FTCursorDel(ctx context.Context, index string, cursorId int) *StatusCmd
- func (c Pipeline) FTCursorRead(ctx context.Context, index string, cursorId int, count int) *MapStringInterfaceCmd
- func (c Pipeline) FTDictAdd(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c Pipeline) FTDictDel(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c Pipeline) FTDictDump(ctx context.Context, dict string) *StringSliceCmd
- func (c Pipeline) FTDropIndex(ctx context.Context, index string) *StatusCmd
- func (c Pipeline) FTDropIndexWithArgs(ctx context.Context, index string, options *FTDropIndexOptions) *StatusCmd
- func (c Pipeline) FTExplain(ctx context.Context, index string, query string) *StringCmd
- func (c Pipeline) FTExplainCli(ctx context.Context, key, path string) error
- func (c Pipeline) FTExplainWithArgs(ctx context.Context, index string, query string, options *FTExplainOptions) *StringCmd
- func (c Pipeline) FTHybrid(ctx context.Context, index string, searchExpr string, vectorField string, ...) *FTHybridCmd
- func (c Pipeline) FTHybridWithArgs(ctx context.Context, index string, options *FTHybridOptions) *FTHybridCmd
- func (c Pipeline) FTInfo(ctx context.Context, index string) *FTInfoCmd
- func (c Pipeline) FTSearch(ctx context.Context, index string, query string) *FTSearchCmd
- func (c Pipeline) FTSearchWithArgs(ctx context.Context, index string, query string, options *FTSearchOptions) *FTSearchCmd
- func (c Pipeline) FTSpellCheck(ctx context.Context, index string, query string) *FTSpellCheckCmd
- func (c Pipeline) FTSpellCheckWithArgs(ctx context.Context, index string, query string, options *FTSpellCheckOptions) *FTSpellCheckCmd
- func (c Pipeline) FTSynDump(ctx context.Context, index string) *FTSynDumpCmd
- func (c Pipeline) FTSynUpdate(ctx context.Context, index string, synGroupId interface{}, terms []interface{}) *StatusCmd
- func (c Pipeline) FTSynUpdateWithArgs(ctx context.Context, index string, synGroupId interface{}, ...) *StatusCmd
- func (c Pipeline) FTTagVals(ctx context.Context, index string, field string) *StringSliceCmd
- func (c Pipeline) FT_List(ctx context.Context) *StringSliceCmd
- func (c Pipeline) FlushAll(ctx context.Context) *StatusCmd
- func (c Pipeline) FlushAllAsync(ctx context.Context) *StatusCmd
- func (c Pipeline) FlushDB(ctx context.Context) *StatusCmd
- func (c Pipeline) FlushDBAsync(ctx context.Context) *StatusCmd
- func (c Pipeline) FunctionDelete(ctx context.Context, libName string) *StringCmd
- func (c Pipeline) FunctionDump(ctx context.Context) *StringCmd
- func (c Pipeline) FunctionFlush(ctx context.Context) *StringCmd
- func (c Pipeline) FunctionFlushAsync(ctx context.Context) *StringCmd
- func (c Pipeline) FunctionKill(ctx context.Context) *StringCmd
- func (c Pipeline) FunctionList(ctx context.Context, q FunctionListQuery) *FunctionListCmd
- func (c Pipeline) FunctionLoad(ctx context.Context, code string) *StringCmd
- func (c Pipeline) FunctionLoadReplace(ctx context.Context, code string) *StringCmd
- func (c Pipeline) FunctionRestore(ctx context.Context, libDump string) *StringCmd
- func (c Pipeline) FunctionStats(ctx context.Context) *FunctionStatsCmd
- func (c Pipeline) GeoAdd(ctx context.Context, key string, geoLocation ...*GeoLocation) *IntCmd
- func (c Pipeline) GeoDist(ctx context.Context, key string, member1, member2, unit string) *FloatCmd
- func (c Pipeline) GeoHash(ctx context.Context, key string, members ...string) *StringSliceCmd
- func (c Pipeline) GeoPos(ctx context.Context, key string, members ...string) *GeoPosCmd
- func (c Pipeline) GeoRadius(ctx context.Context, key string, longitude, latitude float64, ...) *GeoLocationCmddeprecated
- func (c Pipeline) GeoRadiusByMember(ctx context.Context, key, member string, query *GeoRadiusQuery) *GeoLocationCmddeprecated
- func (c Pipeline) GeoRadiusByMemberStore(ctx context.Context, key, member string, query *GeoRadiusQuery) *IntCmd
- func (c Pipeline) GeoRadiusStore(ctx context.Context, key string, longitude, latitude float64, ...) *IntCmd
- func (c Pipeline) GeoSearch(ctx context.Context, key string, q *GeoSearchQuery) *StringSliceCmd
- func (c Pipeline) GeoSearchLocation(ctx context.Context, key string, q *GeoSearchLocationQuery) *GeoSearchLocationCmd
- func (c Pipeline) GeoSearchStore(ctx context.Context, key, store string, q *GeoSearchStoreQuery) *IntCmd
- func (c Pipeline) Get(ctx context.Context, key string) *StringCmd
- func (c Pipeline) GetBit(ctx context.Context, key string, offset int64) *IntCmd
- func (c Pipeline) GetDel(ctx context.Context, key string) *StringCmd
- func (c Pipeline) GetEx(ctx context.Context, key string, expiration time.Duration) *StringCmd
- func (c Pipeline) GetRange(ctx context.Context, key string, start, end int64) *StringCmd
- func (c Pipeline) GetSet(ctx context.Context, key string, value interface{}) *StringCmddeprecated
- func (c Pipeline) HDel(ctx context.Context, key string, fields ...string) *IntCmd
- func (c Pipeline) HExists(ctx context.Context, key, field string) *BoolCmd
- func (c Pipeline) HExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c Pipeline) HExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c Pipeline) HExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c Pipeline) HExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Pipeline) HExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c Pipeline) HGet(ctx context.Context, key, field string) *StringCmd
- func (c Pipeline) HGetAll(ctx context.Context, key string) *MapStringStringCmd
- func (c Pipeline) HGetDel(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c Pipeline) HGetEX(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c Pipeline) HGetEXWithArgs(ctx context.Context, key string, options *HGetEXOptions, fields ...string) *StringSliceCmd
- func (c Pipeline) HIncrBy(ctx context.Context, key, field string, incr int64) *IntCmd
- func (c Pipeline) HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd
- func (c Pipeline) HKeys(ctx context.Context, key string) *StringSliceCmd
- func (c Pipeline) HLen(ctx context.Context, key string) *IntCmd
- func (c Pipeline) HMGet(ctx context.Context, key string, fields ...string) *SliceCmd
- func (c Pipeline) HMSet(ctx context.Context, key string, values ...interface{}) *BoolCmd
- func (c Pipeline) HPExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c Pipeline) HPExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c Pipeline) HPExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c Pipeline) HPExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Pipeline) HPExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c Pipeline) HPTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Pipeline) HPersist(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Pipeline) HRandField(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Pipeline) HRandFieldWithValues(ctx context.Context, key string, count int) *KeyValueSliceCmd
- func (c Pipeline) HScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Pipeline) HScanNoValues(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Pipeline) HSet(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Pipeline) HSetEX(ctx context.Context, key string, fieldsAndValues ...string) *IntCmd
- func (c Pipeline) HSetEXWithArgs(ctx context.Context, key string, options *HSetEXOptions, ...) *IntCmd
- func (c Pipeline) HSetNX(ctx context.Context, key, field string, value interface{}) *BoolCmd
- func (c Pipeline) HStrLen(ctx context.Context, key, field string) *IntCmd
- func (c Pipeline) HTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Pipeline) HVals(ctx context.Context, key string) *StringSliceCmd
- func (c Pipeline) Hello(ctx context.Context, ver int, username, password, clientName string) *MapStringInterfaceCmd
- func (c Pipeline) Incr(ctx context.Context, key string) *IntCmd
- func (c Pipeline) IncrBy(ctx context.Context, key string, value int64) *IntCmd
- func (c Pipeline) IncrByFloat(ctx context.Context, key string, value float64) *FloatCmd
- func (c Pipeline) Info(ctx context.Context, sections ...string) *StringCmd
- func (c Pipeline) InfoMap(ctx context.Context, sections ...string) *InfoCmd
- func (c Pipeline) JSONArrAppend(ctx context.Context, key, path string, values ...interface{}) *IntSliceCmd
- func (c Pipeline) JSONArrIndex(ctx context.Context, key, path string, value ...interface{}) *IntSliceCmd
- func (c Pipeline) JSONArrIndexWithArgs(ctx context.Context, key, path string, options *JSONArrIndexArgs, ...) *IntSliceCmd
- func (c Pipeline) JSONArrInsert(ctx context.Context, key, path string, index int64, values ...interface{}) *IntSliceCmd
- func (c Pipeline) JSONArrLen(ctx context.Context, key, path string) *IntSliceCmd
- func (c Pipeline) JSONArrPop(ctx context.Context, key, path string, index int) *StringSliceCmd
- func (c Pipeline) JSONArrTrim(ctx context.Context, key, path string) *IntSliceCmd
- func (c Pipeline) JSONArrTrimWithArgs(ctx context.Context, key, path string, options *JSONArrTrimArgs) *IntSliceCmd
- func (c Pipeline) JSONClear(ctx context.Context, key, path string) *IntCmd
- func (c Pipeline) JSONDebugMemory(ctx context.Context, key, path string) *IntCmd
- func (c Pipeline) JSONDel(ctx context.Context, key, path string) *IntCmd
- func (c Pipeline) JSONForget(ctx context.Context, key, path string) *IntCmd
- func (c Pipeline) JSONGet(ctx context.Context, key string, paths ...string) *JSONCmd
- func (c Pipeline) JSONGetWithArgs(ctx context.Context, key string, options *JSONGetArgs, paths ...string) *JSONCmd
- func (c Pipeline) JSONMGet(ctx context.Context, path string, keys ...string) *JSONSliceCmd
- func (c Pipeline) JSONMSet(ctx context.Context, params ...interface{}) *StatusCmd
- func (c Pipeline) JSONMSetArgs(ctx context.Context, docs []JSONSetArgs) *StatusCmd
- func (c Pipeline) JSONMerge(ctx context.Context, key, path string, value string) *StatusCmd
- func (c Pipeline) JSONNumIncrBy(ctx context.Context, key, path string, value float64) *JSONCmd
- func (c Pipeline) JSONObjKeys(ctx context.Context, key, path string) *SliceCmd
- func (c Pipeline) JSONObjLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Pipeline) JSONSet(ctx context.Context, key, path string, value interface{}) *StatusCmd
- func (c Pipeline) JSONSetMode(ctx context.Context, key, path string, value interface{}, mode string) *StatusCmd
- func (c Pipeline) JSONStrAppend(ctx context.Context, key, path, value string) *IntPointerSliceCmd
- func (c Pipeline) JSONStrLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Pipeline) JSONToggle(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Pipeline) JSONType(ctx context.Context, key, path string) *JSONSliceCmd
- func (c Pipeline) Keys(ctx context.Context, pattern string) *StringSliceCmd
- func (c Pipeline) LCS(ctx context.Context, q *LCSQuery) *LCSCmd
- func (c Pipeline) LIndex(ctx context.Context, key string, index int64) *StringCmd
- func (c Pipeline) LInsert(ctx context.Context, key, op string, pivot, value interface{}) *IntCmd
- func (c Pipeline) LInsertAfter(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c Pipeline) LInsertBefore(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c Pipeline) LLen(ctx context.Context, key string) *IntCmd
- func (c Pipeline) LMPop(ctx context.Context, direction string, count int64, keys ...string) *KeyValuesCmd
- func (c Pipeline) LMove(ctx context.Context, source, destination, srcpos, destpos string) *StringCmd
- func (c Pipeline) LPop(ctx context.Context, key string) *StringCmd
- func (c Pipeline) LPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Pipeline) LPos(ctx context.Context, key string, value string, a LPosArgs) *IntCmd
- func (c Pipeline) LPosCount(ctx context.Context, key string, value string, count int64, a LPosArgs) *IntSliceCmd
- func (c Pipeline) LPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Pipeline) LPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Pipeline) LRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c Pipeline) LRem(ctx context.Context, key string, count int64, value interface{}) *IntCmd
- func (c Pipeline) LSet(ctx context.Context, key string, index int64, value interface{}) *StatusCmd
- func (c Pipeline) LTrim(ctx context.Context, key string, start, stop int64) *StatusCmd
- func (c Pipeline) LastSave(ctx context.Context) *IntCmd
- func (c Pipeline) Latency(ctx context.Context) *LatencyCmd
- func (c Pipeline) LatencyReset(ctx context.Context, events ...interface{}) *StatusCmd
- func (c *Pipeline) Len() int
- func (c Pipeline) MGet(ctx context.Context, keys ...string) *SliceCmd
- func (c Pipeline) MSet(ctx context.Context, values ...interface{}) *StatusCmd
- func (c Pipeline) MSetEX(ctx context.Context, args MSetEXArgs, values ...interface{}) *IntCmd
- func (c Pipeline) MSetNX(ctx context.Context, values ...interface{}) *BoolCmd
- func (c Pipeline) MemoryUsage(ctx context.Context, key string, samples ...int) *IntCmd
- func (c Pipeline) Migrate(ctx context.Context, host, port, key string, db int, timeout time.Duration) *StatusCmd
- func (c Pipeline) ModuleLoadex(ctx context.Context, conf *ModuleLoadexConfig) *StringCmd
- func (c Pipeline) Monitor(ctx context.Context, ch chan string) *MonitorCmd
- func (c Pipeline) Move(ctx context.Context, key string, db int) *BoolCmd
- func (c Pipeline) ObjectEncoding(ctx context.Context, key string) *StringCmd
- func (c Pipeline) ObjectFreq(ctx context.Context, key string) *IntCmd
- func (c Pipeline) ObjectIdleTime(ctx context.Context, key string) *DurationCmd
- func (c Pipeline) ObjectRefCount(ctx context.Context, key string) *IntCmd
- func (c Pipeline) PExpire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Pipeline) PExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c Pipeline) PExpireTime(ctx context.Context, key string) *DurationCmd
- func (c Pipeline) PFAdd(ctx context.Context, key string, els ...interface{}) *IntCmd
- func (c Pipeline) PFCount(ctx context.Context, keys ...string) *IntCmd
- func (c Pipeline) PFMerge(ctx context.Context, dest string, keys ...string) *StatusCmd
- func (c Pipeline) PTTL(ctx context.Context, key string) *DurationCmd
- func (c Pipeline) Persist(ctx context.Context, key string) *BoolCmd
- func (c Pipeline) Ping(ctx context.Context) *StatusCmd
- func (c *Pipeline) Pipeline() Pipeliner
- func (c *Pipeline) Pipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c *Pipeline) Process(ctx context.Context, cmd Cmder) error
- func (c Pipeline) PubSubChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c Pipeline) PubSubNumPat(ctx context.Context) *IntCmd
- func (c Pipeline) PubSubNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c Pipeline) PubSubShardChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c Pipeline) PubSubShardNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c Pipeline) Publish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c Pipeline) Quit(_ context.Context) *StatusCmddeprecated
- func (c Pipeline) RPop(ctx context.Context, key string) *StringCmd
- func (c Pipeline) RPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Pipeline) RPopLPush(ctx context.Context, source, destination string) *StringCmddeprecated
- func (c Pipeline) RPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Pipeline) RPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Pipeline) RandomKey(ctx context.Context) *StringCmd
- func (c Pipeline) ReadOnly(ctx context.Context) *StatusCmd
- func (c Pipeline) ReadWrite(ctx context.Context) *StatusCmd
- func (c Pipeline) Rename(ctx context.Context, key, newkey string) *StatusCmd
- func (c Pipeline) RenameNX(ctx context.Context, key, newkey string) *BoolCmd
- func (c Pipeline) Restore(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c Pipeline) RestoreReplace(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c Pipeline) SAdd(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Pipeline) SCard(ctx context.Context, key string) *IntCmd
- func (c Pipeline) SDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Pipeline) SDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Pipeline) SInter(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Pipeline) SInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c Pipeline) SInterStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Pipeline) SIsMember(ctx context.Context, key string, member interface{}) *BoolCmd
- func (c Pipeline) SMIsMember(ctx context.Context, key string, members ...interface{}) *BoolSliceCmd
- func (c Pipeline) SMembers(ctx context.Context, key string) *StringSliceCmd
- func (c Pipeline) SMembersMap(ctx context.Context, key string) *StringStructMapCmd
- func (c Pipeline) SMove(ctx context.Context, source, destination string, member interface{}) *BoolCmd
- func (c Pipeline) SPop(ctx context.Context, key string) *StringCmd
- func (c Pipeline) SPopN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c Pipeline) SPublish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c Pipeline) SRandMember(ctx context.Context, key string) *StringCmd
- func (c Pipeline) SRandMemberN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c Pipeline) SRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Pipeline) SScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Pipeline) SUnion(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Pipeline) SUnionStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Pipeline) Save(ctx context.Context) *StatusCmd
- func (c Pipeline) Scan(ctx context.Context, cursor uint64, match string, count int64) *ScanCmd
- func (c Pipeline) ScanType(ctx context.Context, cursor uint64, match string, count int64, keyType string) *ScanCmd
- func (c Pipeline) ScriptExists(ctx context.Context, hashes ...string) *BoolSliceCmd
- func (c Pipeline) ScriptFlush(ctx context.Context) *StatusCmd
- func (c Pipeline) ScriptKill(ctx context.Context) *StatusCmd
- func (c Pipeline) ScriptLoad(ctx context.Context, script string) *StringCmd
- func (c Pipeline) Select(ctx context.Context, index int) *StatusCmd
- func (c Pipeline) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd
- func (c Pipeline) SetArgs(ctx context.Context, key string, value interface{}, a SetArgs) *StatusCmd
- func (c Pipeline) SetBit(ctx context.Context, key string, offset int64, value int) *IntCmd
- func (c Pipeline) SetEx(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmddeprecated
- func (c Pipeline) SetIFDEQ(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c Pipeline) SetIFDEQGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c Pipeline) SetIFDNE(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c Pipeline) SetIFDNEGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c Pipeline) SetIFEQ(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c Pipeline) SetIFEQGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c Pipeline) SetIFNE(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c Pipeline) SetIFNEGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c Pipeline) SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmddeprecated
- func (c Pipeline) SetRange(ctx context.Context, key string, offset int64, value string) *IntCmd
- func (c Pipeline) SetXX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmd
- func (c Pipeline) Shutdown(ctx context.Context) *StatusCmd
- func (c Pipeline) ShutdownNoSave(ctx context.Context) *StatusCmd
- func (c Pipeline) ShutdownSave(ctx context.Context) *StatusCmd
- func (c Pipeline) SlaveOf(ctx context.Context, host, port string) *StatusCmddeprecated
- func (c Pipeline) SlowLogGet(ctx context.Context, num int64) *SlowLogCmd
- func (c Pipeline) SlowLogLen(ctx context.Context) *IntCmd
- func (c Pipeline) SlowLogReset(ctx context.Context) *StatusCmd
- func (c Pipeline) Sort(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c Pipeline) SortInterfaces(ctx context.Context, key string, sort *Sort) *SliceCmd
- func (c Pipeline) SortRO(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c Pipeline) SortStore(ctx context.Context, key, store string, sort *Sort) *IntCmd
- func (c Pipeline) StrLen(ctx context.Context, key string) *IntCmd
- func (c Pipeline) SwapDB(ctx context.Context, index1, index2 int) *StatusCmd
- func (c Pipeline) Sync(_ context.Context)
- func (c Pipeline) TDigestAdd(ctx context.Context, key string, elements ...float64) *StatusCmd
- func (c Pipeline) TDigestByRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c Pipeline) TDigestByRevRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c Pipeline) TDigestCDF(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c Pipeline) TDigestCreate(ctx context.Context, key string) *StatusCmd
- func (c Pipeline) TDigestCreateWithCompression(ctx context.Context, key string, compression int64) *StatusCmd
- func (c Pipeline) TDigestInfo(ctx context.Context, key string) *TDigestInfoCmd
- func (c Pipeline) TDigestMax(ctx context.Context, key string) *FloatCmd
- func (c Pipeline) TDigestMerge(ctx context.Context, destKey string, options *TDigestMergeOptions, ...) *StatusCmd
- func (c Pipeline) TDigestMin(ctx context.Context, key string) *FloatCmd
- func (c Pipeline) TDigestQuantile(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c Pipeline) TDigestRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c Pipeline) TDigestReset(ctx context.Context, key string) *StatusCmd
- func (c Pipeline) TDigestRevRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c Pipeline) TDigestTrimmedMean(ctx context.Context, key string, lowCutQuantile, highCutQuantile float64) *FloatCmd
- func (c Pipeline) TSAdd(ctx context.Context, key string, timestamp interface{}, value float64) *IntCmd
- func (c Pipeline) TSAddWithArgs(ctx context.Context, key string, timestamp interface{}, value float64, ...) *IntCmd
- func (c Pipeline) TSAlter(ctx context.Context, key string, options *TSAlterOptions) *StatusCmd
- func (c Pipeline) TSCreate(ctx context.Context, key string) *StatusCmd
- func (c Pipeline) TSCreateRule(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c Pipeline) TSCreateRuleWithArgs(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c Pipeline) TSCreateWithArgs(ctx context.Context, key string, options *TSOptions) *StatusCmd
- func (c Pipeline) TSDecrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c Pipeline) TSDecrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c Pipeline) TSDel(ctx context.Context, Key string, fromTimestamp int, toTimestamp int) *IntCmd
- func (c Pipeline) TSDeleteRule(ctx context.Context, sourceKey string, destKey string) *StatusCmd
- func (c Pipeline) TSGet(ctx context.Context, key string) *TSTimestampValueCmd
- func (c Pipeline) TSGetWithArgs(ctx context.Context, key string, options *TSGetOptions) *TSTimestampValueCmd
- func (c Pipeline) TSIncrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c Pipeline) TSIncrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c Pipeline) TSInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c Pipeline) TSInfoWithArgs(ctx context.Context, key string, options *TSInfoOptions) *MapStringInterfaceCmd
- func (c Pipeline) TSMAdd(ctx context.Context, ktvSlices [][]interface{}) *IntSliceCmd
- func (c Pipeline) TSMGet(ctx context.Context, filters []string) *MapStringSliceInterfaceCmd
- func (c Pipeline) TSMGetWithArgs(ctx context.Context, filters []string, options *TSMGetOptions) *MapStringSliceInterfaceCmd
- func (c Pipeline) TSMRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c Pipeline) TSMRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c Pipeline) TSMRevRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c Pipeline) TSMRevRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c Pipeline) TSQueryIndex(ctx context.Context, filterExpr []string) *StringSliceCmd
- func (c Pipeline) TSRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c Pipeline) TSRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c Pipeline) TSRevRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c Pipeline) TSRevRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c Pipeline) TTL(ctx context.Context, key string) *DurationCmd
- func (c Pipeline) Time(ctx context.Context) *TimeCmd
- func (c Pipeline) TopKAdd(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c Pipeline) TopKCount(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Pipeline) TopKIncrBy(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c Pipeline) TopKInfo(ctx context.Context, key string) *TopKInfoCmd
- func (c Pipeline) TopKList(ctx context.Context, key string) *StringSliceCmd
- func (c Pipeline) TopKListWithCount(ctx context.Context, key string) *MapStringIntCmd
- func (c Pipeline) TopKQuery(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Pipeline) TopKReserve(ctx context.Context, key string, k int64) *StatusCmd
- func (c Pipeline) TopKReserveWithOptions(ctx context.Context, key string, k int64, width, depth int64, decay float64) *StatusCmd
- func (c Pipeline) Touch(ctx context.Context, keys ...string) *IntCmd
- func (c *Pipeline) TxPipeline() Pipeliner
- func (c *Pipeline) TxPipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c Pipeline) Type(ctx context.Context, key string) *StatusCmd
- func (c Pipeline) Unlink(ctx context.Context, keys ...string) *IntCmd
- func (c Pipeline) VAdd(ctx context.Context, key, element string, val Vector) *BoolCmd
- func (c Pipeline) VAddWithArgs(ctx context.Context, key, element string, val Vector, addArgs *VAddArgs) *BoolCmd
- func (c Pipeline) VCard(ctx context.Context, key string) *IntCmd
- func (c Pipeline) VClearAttributes(ctx context.Context, key, element string) *BoolCmd
- func (c Pipeline) VDim(ctx context.Context, key string) *IntCmd
- func (c Pipeline) VEmb(ctx context.Context, key, element string, raw bool) *SliceCmd
- func (c Pipeline) VGetAttr(ctx context.Context, key, element string) *StringCmd
- func (c Pipeline) VInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c Pipeline) VLinks(ctx context.Context, key, element string) *StringSliceCmd
- func (c Pipeline) VLinksWithScores(ctx context.Context, key, element string) *VectorScoreSliceCmd
- func (c Pipeline) VRandMember(ctx context.Context, key string) *StringCmd
- func (c Pipeline) VRandMemberCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Pipeline) VRange(ctx context.Context, key, start, end string, count int64) *StringSliceCmd
- func (c Pipeline) VRem(ctx context.Context, key, element string) *BoolCmd
- func (c Pipeline) VSetAttr(ctx context.Context, key, element string, attr interface{}) *BoolCmd
- func (c Pipeline) VSim(ctx context.Context, key string, val Vector) *StringSliceCmd
- func (c Pipeline) VSimWithArgs(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *StringSliceCmd
- func (c Pipeline) VSimWithArgsWithScores(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *VectorScoreSliceCmd
- func (c Pipeline) VSimWithScores(ctx context.Context, key string, val Vector) *VectorScoreSliceCmd
- func (c Pipeline) Wait(ctx context.Context, numSlaves int, timeout time.Duration) *IntCmd
- func (c Pipeline) WaitAOF(ctx context.Context, numLocal, numSlaves int, timeout time.Duration) *IntCmd
- func (c Pipeline) XAck(ctx context.Context, stream, group string, ids ...string) *IntCmd
- func (c Pipeline) XAckDel(ctx context.Context, stream string, group string, mode string, ids ...string) *SliceCmd
- func (c Pipeline) XAdd(ctx context.Context, a *XAddArgs) *StringCmd
- func (c Pipeline) XAutoClaim(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimCmd
- func (c Pipeline) XAutoClaimJustID(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimJustIDCmd
- func (c Pipeline) XCfgSet(ctx context.Context, a *XCfgSetArgs) *StatusCmd
- func (c Pipeline) XClaim(ctx context.Context, a *XClaimArgs) *XMessageSliceCmd
- func (c Pipeline) XClaimJustID(ctx context.Context, a *XClaimArgs) *StringSliceCmd
- func (c Pipeline) XDel(ctx context.Context, stream string, ids ...string) *IntCmd
- func (c Pipeline) XDelEx(ctx context.Context, stream string, mode string, ids ...string) *SliceCmd
- func (c Pipeline) XGroupCreate(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Pipeline) XGroupCreateConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c Pipeline) XGroupCreateMkStream(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Pipeline) XGroupDelConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c Pipeline) XGroupDestroy(ctx context.Context, stream, group string) *IntCmd
- func (c Pipeline) XGroupSetID(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Pipeline) XInfoConsumers(ctx context.Context, key string, group string) *XInfoConsumersCmd
- func (c Pipeline) XInfoGroups(ctx context.Context, key string) *XInfoGroupsCmd
- func (c Pipeline) XInfoStream(ctx context.Context, key string) *XInfoStreamCmd
- func (c Pipeline) XInfoStreamFull(ctx context.Context, key string, count int) *XInfoStreamFullCmd
- func (c Pipeline) XLen(ctx context.Context, stream string) *IntCmd
- func (c Pipeline) XPending(ctx context.Context, stream, group string) *XPendingCmd
- func (c Pipeline) XPendingExt(ctx context.Context, a *XPendingExtArgs) *XPendingExtCmd
- func (c Pipeline) XRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c Pipeline) XRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c Pipeline) XRead(ctx context.Context, a *XReadArgs) *XStreamSliceCmd
- func (c Pipeline) XReadGroup(ctx context.Context, a *XReadGroupArgs) *XStreamSliceCmd
- func (c Pipeline) XReadStreams(ctx context.Context, streams ...string) *XStreamSliceCmd
- func (c Pipeline) XRevRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c Pipeline) XRevRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c Pipeline) XTrimMaxLen(ctx context.Context, key string, maxLen int64) *IntCmd
- func (c Pipeline) XTrimMaxLenApprox(ctx context.Context, key string, maxLen, limit int64) *IntCmd
- func (c Pipeline) XTrimMaxLenApproxMode(ctx context.Context, key string, maxLen, limit int64, mode string) *IntCmd
- func (c Pipeline) XTrimMaxLenMode(ctx context.Context, key string, maxLen int64, mode string) *IntCmd
- func (c Pipeline) XTrimMinID(ctx context.Context, key string, minID string) *IntCmd
- func (c Pipeline) XTrimMinIDApprox(ctx context.Context, key string, minID string, limit int64) *IntCmd
- func (c Pipeline) XTrimMinIDApproxMode(ctx context.Context, key string, minID string, limit int64, mode string) *IntCmd
- func (c Pipeline) XTrimMinIDMode(ctx context.Context, key string, minID string, mode string) *IntCmd
- func (c Pipeline) ZAdd(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Pipeline) ZAddArgs(ctx context.Context, key string, args ZAddArgs) *IntCmd
- func (c Pipeline) ZAddArgsIncr(ctx context.Context, key string, args ZAddArgs) *FloatCmd
- func (c Pipeline) ZAddGT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Pipeline) ZAddLT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Pipeline) ZAddNX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Pipeline) ZAddXX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Pipeline) ZCard(ctx context.Context, key string) *IntCmd
- func (c Pipeline) ZCount(ctx context.Context, key, min, max string) *IntCmd
- func (c Pipeline) ZDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Pipeline) ZDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Pipeline) ZDiffWithScores(ctx context.Context, keys ...string) *ZSliceCmd
- func (c Pipeline) ZIncrBy(ctx context.Context, key string, increment float64, member string) *FloatCmd
- func (c Pipeline) ZInter(ctx context.Context, store *ZStore) *StringSliceCmd
- func (c Pipeline) ZInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c Pipeline) ZInterStore(ctx context.Context, destination string, store *ZStore) *IntCmd
- func (c Pipeline) ZInterWithScores(ctx context.Context, store *ZStore) *ZSliceCmd
- func (c Pipeline) ZLexCount(ctx context.Context, key, min, max string) *IntCmd
- func (c Pipeline) ZMPop(ctx context.Context, order string, count int64, keys ...string) *ZSliceWithKeyCmd
- func (c Pipeline) ZMScore(ctx context.Context, key string, members ...string) *FloatSliceCmd
- func (c Pipeline) ZPopMax(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c Pipeline) ZPopMin(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c Pipeline) ZRandMember(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Pipeline) ZRandMemberWithScores(ctx context.Context, key string, count int) *ZSliceCmd
- func (c Pipeline) ZRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c Pipeline) ZRangeArgs(ctx context.Context, z ZRangeArgs) *StringSliceCmd
- func (c Pipeline) ZRangeArgsWithScores(ctx context.Context, z ZRangeArgs) *ZSliceCmd
- func (c Pipeline) ZRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Pipeline) ZRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Pipeline) ZRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c Pipeline) ZRangeStore(ctx context.Context, dst string, z ZRangeArgs) *IntCmd
- func (c Pipeline) ZRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c Pipeline) ZRank(ctx context.Context, key, member string) *IntCmd
- func (c Pipeline) ZRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c Pipeline) ZRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Pipeline) ZRemRangeByLex(ctx context.Context, key, min, max string) *IntCmd
- func (c Pipeline) ZRemRangeByRank(ctx context.Context, key string, start, stop int64) *IntCmd
- func (c Pipeline) ZRemRangeByScore(ctx context.Context, key, min, max string) *IntCmd
- func (c Pipeline) ZRevRange(ctx context.Context, key string, start, stop int64) *StringSliceCmddeprecated
- func (c Pipeline) ZRevRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Pipeline) ZRevRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Pipeline) ZRevRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c Pipeline) ZRevRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c Pipeline) ZRevRank(ctx context.Context, key, member string) *IntCmd
- func (c Pipeline) ZRevRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c Pipeline) ZScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Pipeline) ZScore(ctx context.Context, key, member string) *FloatCmd
- func (c Pipeline) ZUnion(ctx context.Context, store ZStore) *StringSliceCmd
- func (c Pipeline) ZUnionStore(ctx context.Context, dest string, store *ZStore) *IntCmd
- func (c Pipeline) ZUnionWithScores(ctx context.Context, store ZStore) *ZSliceCmd
- type Pipeliner
- type Pong
- type PoolStats
- type Pooler
- type ProbabilisticCmdable
- type ProcessHook
- type ProcessPipelineHook
- type PubSub
- func (c *PubSub) Channel(opts ...ChannelOption) <-chan *Message
- func (c *PubSub) ChannelSize(size int) <-chan *Messagedeprecated
- func (c *PubSub) ChannelWithSubscriptions(opts ...ChannelOption) <-chan interface{}
- func (c *PubSub) Close() error
- func (c *PubSub) PSubscribe(ctx context.Context, patterns ...string) error
- func (c *PubSub) PUnsubscribe(ctx context.Context, patterns ...string) error
- func (c *PubSub) Ping(ctx context.Context, payload ...string) error
- func (c *PubSub) Receive(ctx context.Context) (interface{}, error)
- func (c *PubSub) ReceiveMessage(ctx context.Context) (*Message, error)
- func (c *PubSub) ReceiveTimeout(ctx context.Context, timeout time.Duration) (interface{}, error)
- func (c *PubSub) SSubscribe(ctx context.Context, channels ...string) error
- func (c *PubSub) SUnsubscribe(ctx context.Context, channels ...string) error
- func (c *PubSub) String() string
- func (c *PubSub) Subscribe(ctx context.Context, channels ...string) error
- func (c *PubSub) Unsubscribe(ctx context.Context, channels ...string) error
- type PubSubCmdable
- type PubSubPooler
- type RankScore
- type RankWithScoreCmd
- func (cmd *RankWithScoreCmd) Args() []interface{}
- func (cmd *RankWithScoreCmd) Clone() Cmder
- func (cmd *RankWithScoreCmd) Err() error
- func (cmd *RankWithScoreCmd) FullName() string
- func (cmd *RankWithScoreCmd) GetCmdType() CmdType
- func (cmd *RankWithScoreCmd) Name() string
- func (cmd *RankWithScoreCmd) Result() (RankScore, error)
- func (cmd *RankWithScoreCmd) SetErr(e error)
- func (cmd *RankWithScoreCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *RankWithScoreCmd) SetStepCount(stepCount int8)
- func (cmd *RankWithScoreCmd) SetVal(val RankScore)
- func (cmd *RankWithScoreCmd) String() string
- func (cmd *RankWithScoreCmd) Val() RankScore
- type Ring
- func (c Ring) ACLCat(ctx context.Context) *StringSliceCmd
- func (c Ring) ACLCatArgs(ctx context.Context, options *ACLCatArgs) *StringSliceCmd
- func (c Ring) ACLDelUser(ctx context.Context, username string) *IntCmd
- func (c Ring) ACLDryRun(ctx context.Context, username string, command ...interface{}) *StringCmd
- func (c Ring) ACLGenPass(ctx context.Context, bit int) *StringCmd
- func (c Ring) ACLList(ctx context.Context) *StringSliceCmd
- func (c Ring) ACLLog(ctx context.Context, count int64) *ACLLogCmd
- func (c Ring) ACLLogReset(ctx context.Context) *StatusCmd
- func (c Ring) ACLSetUser(ctx context.Context, username string, rules ...string) *StatusCmd
- func (c Ring) ACLUsers(ctx context.Context) *StringSliceCmd
- func (c Ring) ACLWhoAmI(ctx context.Context) *StringCmd
- func (hs *Ring) AddHook(hook Hook)
- func (c Ring) Append(ctx context.Context, key, value string) *IntCmd
- func (c Ring) BFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Ring) BFCard(ctx context.Context, key string) *IntCmd
- func (c Ring) BFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Ring) BFInfo(ctx context.Context, key string) *BFInfoCmd
- func (c Ring) BFInfoArg(ctx context.Context, key, option string) *BFInfoCmd
- func (c Ring) BFInfoCapacity(ctx context.Context, key string) *BFInfoCmd
- func (c Ring) BFInfoExpansion(ctx context.Context, key string) *BFInfoCmd
- func (c Ring) BFInfoFilters(ctx context.Context, key string) *BFInfoCmd
- func (c Ring) BFInfoItems(ctx context.Context, key string) *BFInfoCmd
- func (c Ring) BFInfoSize(ctx context.Context, key string) *BFInfoCmd
- func (c Ring) BFInsert(ctx context.Context, key string, options *BFInsertOptions, ...) *BoolSliceCmd
- func (c Ring) BFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c Ring) BFMAdd(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Ring) BFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Ring) BFReserve(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c Ring) BFReserveExpansion(ctx context.Context, key string, errorRate float64, capacity, expansion int64) *StatusCmd
- func (c Ring) BFReserveNonScaling(ctx context.Context, key string, errorRate float64, capacity int64) *StatusCmd
- func (c Ring) BFReserveWithArgs(ctx context.Context, key string, options *BFReserveOptions) *StatusCmd
- func (c Ring) BFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c Ring) BLMPop(ctx context.Context, timeout time.Duration, direction string, count int64, ...) *KeyValuesCmd
- func (c Ring) BLMove(ctx context.Context, source, destination, srcpos, destpos string, ...) *StringCmd
- func (c Ring) BLPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c Ring) BRPop(ctx context.Context, timeout time.Duration, keys ...string) *StringSliceCmd
- func (c Ring) BRPopLPush(ctx context.Context, source, destination string, timeout time.Duration) *StringCmddeprecated
- func (c Ring) BZMPop(ctx context.Context, timeout time.Duration, order string, count int64, ...) *ZSliceWithKeyCmd
- func (c Ring) BZPopMax(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c Ring) BZPopMin(ctx context.Context, timeout time.Duration, keys ...string) *ZWithKeyCmd
- func (c Ring) BgRewriteAOF(ctx context.Context) *StatusCmd
- func (c Ring) BgSave(ctx context.Context) *StatusCmd
- func (c Ring) BitCount(ctx context.Context, key string, bitCount *BitCount) *IntCmd
- func (c Ring) BitField(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c Ring) BitFieldRO(ctx context.Context, key string, values ...interface{}) *IntSliceCmd
- func (c Ring) BitOpAnd(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Ring) BitOpAndOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Ring) BitOpDiff(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Ring) BitOpDiff1(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Ring) BitOpNot(ctx context.Context, destKey string, key string) *IntCmd
- func (c Ring) BitOpOne(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Ring) BitOpOr(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Ring) BitOpXor(ctx context.Context, destKey string, keys ...string) *IntCmd
- func (c Ring) BitPos(ctx context.Context, key string, bit int64, pos ...int64) *IntCmd
- func (c Ring) BitPosSpan(ctx context.Context, key string, bit int8, start, end int64, span string) *IntCmd
- func (c Ring) CFAdd(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Ring) CFAddNX(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Ring) CFCount(ctx context.Context, key string, element interface{}) *IntCmd
- func (c Ring) CFDel(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Ring) CFExists(ctx context.Context, key string, element interface{}) *BoolCmd
- func (c Ring) CFInfo(ctx context.Context, key string) *CFInfoCmd
- func (c Ring) CFInsert(ctx context.Context, key string, options *CFInsertOptions, ...) *BoolSliceCmd
- func (c Ring) CFInsertNX(ctx context.Context, key string, options *CFInsertOptions, ...) *IntSliceCmd
- func (c Ring) CFLoadChunk(ctx context.Context, key string, iterator int64, data interface{}) *StatusCmd
- func (c Ring) CFMExists(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Ring) CFReserve(ctx context.Context, key string, capacity int64) *StatusCmd
- func (c Ring) CFReserveBucketSize(ctx context.Context, key string, capacity int64, bucketsize int64) *StatusCmd
- func (c Ring) CFReserveExpansion(ctx context.Context, key string, capacity int64, expansion int64) *StatusCmd
- func (c Ring) CFReserveMaxIterations(ctx context.Context, key string, capacity int64, maxiterations int64) *StatusCmd
- func (c Ring) CFReserveWithArgs(ctx context.Context, key string, options *CFReserveOptions) *StatusCmd
- func (c Ring) CFScanDump(ctx context.Context, key string, iterator int64) *ScanDumpCmd
- func (c Ring) CMSIncrBy(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Ring) CMSInfo(ctx context.Context, key string) *CMSInfoCmd
- func (c Ring) CMSInitByDim(ctx context.Context, key string, width, depth int64) *StatusCmd
- func (c Ring) CMSInitByProb(ctx context.Context, key string, errorRate, probability float64) *StatusCmd
- func (c Ring) CMSMerge(ctx context.Context, destKey string, sourceKeys ...string) *StatusCmd
- func (c Ring) CMSMergeWithWeight(ctx context.Context, destKey string, sourceKeys map[string]int64) *StatusCmd
- func (c Ring) CMSQuery(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Ring) ClientGetName(ctx context.Context) *StringCmd
- func (c Ring) ClientID(ctx context.Context) *IntCmd
- func (c Ring) ClientInfo(ctx context.Context) *ClientInfoCmd
- func (c Ring) ClientKill(ctx context.Context, ipPort string) *StatusCmd
- func (c Ring) ClientKillByFilter(ctx context.Context, keys ...string) *IntCmd
- func (c Ring) ClientList(ctx context.Context) *StringCmd
- func (c Ring) ClientMaintNotifications(ctx context.Context, enabled bool, endpointType string) *StatusCmd
- func (c Ring) ClientPause(ctx context.Context, dur time.Duration) *BoolCmd
- func (c Ring) ClientUnblock(ctx context.Context, id int64) *IntCmd
- func (c Ring) ClientUnblockWithError(ctx context.Context, id int64) *IntCmd
- func (c Ring) ClientUnpause(ctx context.Context) *BoolCmd
- func (c *Ring) Close() error
- func (c Ring) ClusterAddSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c Ring) ClusterAddSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c Ring) ClusterCountFailureReports(ctx context.Context, nodeID string) *IntCmd
- func (c Ring) ClusterCountKeysInSlot(ctx context.Context, slot int) *IntCmd
- func (c Ring) ClusterDelSlots(ctx context.Context, slots ...int) *StatusCmd
- func (c Ring) ClusterDelSlotsRange(ctx context.Context, min, max int) *StatusCmd
- func (c Ring) ClusterFailover(ctx context.Context) *StatusCmd
- func (c Ring) ClusterForget(ctx context.Context, nodeID string) *StatusCmd
- func (c Ring) ClusterGetKeysInSlot(ctx context.Context, slot int, count int) *StringSliceCmd
- func (c Ring) ClusterInfo(ctx context.Context) *StringCmd
- func (c Ring) ClusterKeySlot(ctx context.Context, key string) *IntCmd
- func (c Ring) ClusterLinks(ctx context.Context) *ClusterLinksCmd
- func (c Ring) ClusterMeet(ctx context.Context, host, port string) *StatusCmd
- func (c Ring) ClusterMyID(ctx context.Context) *StringCmd
- func (c Ring) ClusterMyShardID(ctx context.Context) *StringCmd
- func (c Ring) ClusterNodes(ctx context.Context) *StringCmd
- func (c Ring) ClusterReplicate(ctx context.Context, nodeID string) *StatusCmd
- func (c Ring) ClusterResetHard(ctx context.Context) *StatusCmd
- func (c Ring) ClusterResetSoft(ctx context.Context) *StatusCmd
- func (c Ring) ClusterSaveConfig(ctx context.Context) *StatusCmd
- func (c Ring) ClusterShards(ctx context.Context) *ClusterShardsCmd
- func (c Ring) ClusterSlaves(ctx context.Context, nodeID string) *StringSliceCmddeprecated
- func (c Ring) ClusterSlots(ctx context.Context) *ClusterSlotsCmddeprecated
- func (c Ring) Command(ctx context.Context) *CommandsInfoCmd
- func (c Ring) CommandGetKeys(ctx context.Context, commands ...interface{}) *StringSliceCmd
- func (c Ring) CommandGetKeysAndFlags(ctx context.Context, commands ...interface{}) *KeyFlagsCmd
- func (c Ring) CommandList(ctx context.Context, filter *FilterBy) *StringSliceCmd
- func (c Ring) ConfigGet(ctx context.Context, parameter string) *MapStringStringCmd
- func (c Ring) ConfigResetStat(ctx context.Context) *StatusCmd
- func (c Ring) ConfigRewrite(ctx context.Context) *StatusCmd
- func (c Ring) ConfigSet(ctx context.Context, parameter, value string) *StatusCmd
- func (c Ring) Copy(ctx context.Context, sourceKey, destKey string, db int, replace bool) *IntCmd
- func (c Ring) DBSize(ctx context.Context) *IntCmd
- func (c Ring) DebugObject(ctx context.Context, key string) *StringCmd
- func (c Ring) Decr(ctx context.Context, key string) *IntCmd
- func (c Ring) DecrBy(ctx context.Context, key string, decrement int64) *IntCmd
- func (c Ring) Del(ctx context.Context, keys ...string) *IntCmd
- func (c Ring) DelExArgs(ctx context.Context, key string, a DelExArgs) *IntCmd
- func (c Ring) Digest(ctx context.Context, key string) *DigestCmd
- func (c Ring) Do(ctx context.Context, args ...interface{}) *Cmd
- func (c Ring) Dump(ctx context.Context, key string) *StringCmd
- func (c Ring) Echo(ctx context.Context, message interface{}) *StringCmd
- func (c Ring) Eval(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c Ring) EvalRO(ctx context.Context, script string, keys []string, args ...interface{}) *Cmd
- func (c Ring) EvalSha(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c Ring) EvalShaRO(ctx context.Context, sha1 string, keys []string, args ...interface{}) *Cmd
- func (c Ring) Exists(ctx context.Context, keys ...string) *IntCmd
- func (c Ring) Expire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Ring) ExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c Ring) ExpireGT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Ring) ExpireLT(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Ring) ExpireNX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Ring) ExpireTime(ctx context.Context, key string) *DurationCmd
- func (c Ring) ExpireXX(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Ring) FCall(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Ring) FCallRO(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Ring) FCallRo(ctx context.Context, function string, keys []string, args ...interface{}) *Cmd
- func (c Ring) FTAggregate(ctx context.Context, index string, query string) *MapStringInterfaceCmd
- func (c Ring) FTAggregateWithArgs(ctx context.Context, index string, query string, options *FTAggregateOptions) *AggregateCmd
- func (c Ring) FTAliasAdd(ctx context.Context, index string, alias string) *StatusCmd
- func (c Ring) FTAliasDel(ctx context.Context, alias string) *StatusCmd
- func (c Ring) FTAliasUpdate(ctx context.Context, index string, alias string) *StatusCmd
- func (c Ring) FTAlter(ctx context.Context, index string, skipInitialScan bool, ...) *StatusCmd
- func (c Ring) FTConfigGet(ctx context.Context, option string) *MapMapStringInterfaceCmddeprecated
- func (c Ring) FTConfigSet(ctx context.Context, option string, value interface{}) *StatusCmddeprecated
- func (c Ring) FTCreate(ctx context.Context, index string, options *FTCreateOptions, ...) *StatusCmd
- func (c Ring) FTCursorDel(ctx context.Context, index string, cursorId int) *StatusCmd
- func (c Ring) FTCursorRead(ctx context.Context, index string, cursorId int, count int) *MapStringInterfaceCmd
- func (c Ring) FTDictAdd(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c Ring) FTDictDel(ctx context.Context, dict string, term ...interface{}) *IntCmd
- func (c Ring) FTDictDump(ctx context.Context, dict string) *StringSliceCmd
- func (c Ring) FTDropIndex(ctx context.Context, index string) *StatusCmd
- func (c Ring) FTDropIndexWithArgs(ctx context.Context, index string, options *FTDropIndexOptions) *StatusCmd
- func (c Ring) FTExplain(ctx context.Context, index string, query string) *StringCmd
- func (c Ring) FTExplainCli(ctx context.Context, key, path string) error
- func (c Ring) FTExplainWithArgs(ctx context.Context, index string, query string, options *FTExplainOptions) *StringCmd
- func (c Ring) FTHybrid(ctx context.Context, index string, searchExpr string, vectorField string, ...) *FTHybridCmd
- func (c Ring) FTHybridWithArgs(ctx context.Context, index string, options *FTHybridOptions) *FTHybridCmd
- func (c Ring) FTInfo(ctx context.Context, index string) *FTInfoCmd
- func (c Ring) FTSearch(ctx context.Context, index string, query string) *FTSearchCmd
- func (c Ring) FTSearchWithArgs(ctx context.Context, index string, query string, options *FTSearchOptions) *FTSearchCmd
- func (c Ring) FTSpellCheck(ctx context.Context, index string, query string) *FTSpellCheckCmd
- func (c Ring) FTSpellCheckWithArgs(ctx context.Context, index string, query string, options *FTSpellCheckOptions) *FTSpellCheckCmd
- func (c Ring) FTSynDump(ctx context.Context, index string) *FTSynDumpCmd
- func (c Ring) FTSynUpdate(ctx context.Context, index string, synGroupId interface{}, terms []interface{}) *StatusCmd
- func (c Ring) FTSynUpdateWithArgs(ctx context.Context, index string, synGroupId interface{}, ...) *StatusCmd
- func (c Ring) FTTagVals(ctx context.Context, index string, field string) *StringSliceCmd
- func (c Ring) FT_List(ctx context.Context) *StringSliceCmd
- func (c Ring) FlushAll(ctx context.Context) *StatusCmd
- func (c Ring) FlushAllAsync(ctx context.Context) *StatusCmd
- func (c Ring) FlushDB(ctx context.Context) *StatusCmd
- func (c Ring) FlushDBAsync(ctx context.Context) *StatusCmd
- func (c *Ring) ForEachShard(ctx context.Context, fn func(ctx context.Context, client *Client) error) error
- func (c Ring) FunctionDelete(ctx context.Context, libName string) *StringCmd
- func (c Ring) FunctionDump(ctx context.Context) *StringCmd
- func (c Ring) FunctionFlush(ctx context.Context) *StringCmd
- func (c Ring) FunctionFlushAsync(ctx context.Context) *StringCmd
- func (c Ring) FunctionKill(ctx context.Context) *StringCmd
- func (c Ring) FunctionList(ctx context.Context, q FunctionListQuery) *FunctionListCmd
- func (c Ring) FunctionLoad(ctx context.Context, code string) *StringCmd
- func (c Ring) FunctionLoadReplace(ctx context.Context, code string) *StringCmd
- func (c Ring) FunctionRestore(ctx context.Context, libDump string) *StringCmd
- func (c Ring) FunctionStats(ctx context.Context) *FunctionStatsCmd
- func (c Ring) GeoAdd(ctx context.Context, key string, geoLocation ...*GeoLocation) *IntCmd
- func (c Ring) GeoDist(ctx context.Context, key string, member1, member2, unit string) *FloatCmd
- func (c Ring) GeoHash(ctx context.Context, key string, members ...string) *StringSliceCmd
- func (c Ring) GeoPos(ctx context.Context, key string, members ...string) *GeoPosCmd
- func (c Ring) GeoRadius(ctx context.Context, key string, longitude, latitude float64, ...) *GeoLocationCmddeprecated
- func (c Ring) GeoRadiusByMember(ctx context.Context, key, member string, query *GeoRadiusQuery) *GeoLocationCmddeprecated
- func (c Ring) GeoRadiusByMemberStore(ctx context.Context, key, member string, query *GeoRadiusQuery) *IntCmd
- func (c Ring) GeoRadiusStore(ctx context.Context, key string, longitude, latitude float64, ...) *IntCmd
- func (c Ring) GeoSearch(ctx context.Context, key string, q *GeoSearchQuery) *StringSliceCmd
- func (c Ring) GeoSearchLocation(ctx context.Context, key string, q *GeoSearchLocationQuery) *GeoSearchLocationCmd
- func (c Ring) GeoSearchStore(ctx context.Context, key, store string, q *GeoSearchStoreQuery) *IntCmd
- func (c Ring) Get(ctx context.Context, key string) *StringCmd
- func (c Ring) GetBit(ctx context.Context, key string, offset int64) *IntCmd
- func (c Ring) GetDel(ctx context.Context, key string) *StringCmd
- func (c Ring) GetEx(ctx context.Context, key string, expiration time.Duration) *StringCmd
- func (c Ring) GetRange(ctx context.Context, key string, start, end int64) *StringCmd
- func (c Ring) GetSet(ctx context.Context, key string, value interface{}) *StringCmddeprecated
- func (c *Ring) GetShardClientForKey(key string) (*Client, error)
- func (c *Ring) GetShardClients() []*Client
- func (c Ring) HDel(ctx context.Context, key string, fields ...string) *IntCmd
- func (c Ring) HExists(ctx context.Context, key, field string) *BoolCmd
- func (c Ring) HExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c Ring) HExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c Ring) HExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c Ring) HExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Ring) HExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c Ring) HGet(ctx context.Context, key, field string) *StringCmd
- func (c Ring) HGetAll(ctx context.Context, key string) *MapStringStringCmd
- func (c Ring) HGetDel(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c Ring) HGetEX(ctx context.Context, key string, fields ...string) *StringSliceCmd
- func (c Ring) HGetEXWithArgs(ctx context.Context, key string, options *HGetEXOptions, fields ...string) *StringSliceCmd
- func (c Ring) HIncrBy(ctx context.Context, key, field string, incr int64) *IntCmd
- func (c Ring) HIncrByFloat(ctx context.Context, key, field string, incr float64) *FloatCmd
- func (c Ring) HKeys(ctx context.Context, key string) *StringSliceCmd
- func (c Ring) HLen(ctx context.Context, key string) *IntCmd
- func (c Ring) HMGet(ctx context.Context, key string, fields ...string) *SliceCmd
- func (c Ring) HMSet(ctx context.Context, key string, values ...interface{}) *BoolCmd
- func (c Ring) HPExpire(ctx context.Context, key string, expiration time.Duration, fields ...string) *IntSliceCmd
- func (c Ring) HPExpireAt(ctx context.Context, key string, tm time.Time, fields ...string) *IntSliceCmd
- func (c Ring) HPExpireAtWithArgs(ctx context.Context, key string, tm time.Time, expirationArgs HExpireArgs, ...) *IntSliceCmd
- func (c Ring) HPExpireTime(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Ring) HPExpireWithArgs(ctx context.Context, key string, expiration time.Duration, ...) *IntSliceCmd
- func (c Ring) HPTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Ring) HPersist(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Ring) HRandField(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Ring) HRandFieldWithValues(ctx context.Context, key string, count int) *KeyValueSliceCmd
- func (c Ring) HScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Ring) HScanNoValues(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Ring) HSet(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Ring) HSetEX(ctx context.Context, key string, fieldsAndValues ...string) *IntCmd
- func (c Ring) HSetEXWithArgs(ctx context.Context, key string, options *HSetEXOptions, ...) *IntCmd
- func (c Ring) HSetNX(ctx context.Context, key, field string, value interface{}) *BoolCmd
- func (c Ring) HStrLen(ctx context.Context, key, field string) *IntCmd
- func (c Ring) HTTL(ctx context.Context, key string, fields ...string) *IntSliceCmd
- func (c Ring) HVals(ctx context.Context, key string) *StringSliceCmd
- func (c Ring) Incr(ctx context.Context, key string) *IntCmd
- func (c Ring) IncrBy(ctx context.Context, key string, value int64) *IntCmd
- func (c Ring) IncrByFloat(ctx context.Context, key string, value float64) *FloatCmd
- func (c Ring) Info(ctx context.Context, sections ...string) *StringCmd
- func (c Ring) InfoMap(ctx context.Context, sections ...string) *InfoCmd
- func (c Ring) JSONArrAppend(ctx context.Context, key, path string, values ...interface{}) *IntSliceCmd
- func (c Ring) JSONArrIndex(ctx context.Context, key, path string, value ...interface{}) *IntSliceCmd
- func (c Ring) JSONArrIndexWithArgs(ctx context.Context, key, path string, options *JSONArrIndexArgs, ...) *IntSliceCmd
- func (c Ring) JSONArrInsert(ctx context.Context, key, path string, index int64, values ...interface{}) *IntSliceCmd
- func (c Ring) JSONArrLen(ctx context.Context, key, path string) *IntSliceCmd
- func (c Ring) JSONArrPop(ctx context.Context, key, path string, index int) *StringSliceCmd
- func (c Ring) JSONArrTrim(ctx context.Context, key, path string) *IntSliceCmd
- func (c Ring) JSONArrTrimWithArgs(ctx context.Context, key, path string, options *JSONArrTrimArgs) *IntSliceCmd
- func (c Ring) JSONClear(ctx context.Context, key, path string) *IntCmd
- func (c Ring) JSONDebugMemory(ctx context.Context, key, path string) *IntCmd
- func (c Ring) JSONDel(ctx context.Context, key, path string) *IntCmd
- func (c Ring) JSONForget(ctx context.Context, key, path string) *IntCmd
- func (c Ring) JSONGet(ctx context.Context, key string, paths ...string) *JSONCmd
- func (c Ring) JSONGetWithArgs(ctx context.Context, key string, options *JSONGetArgs, paths ...string) *JSONCmd
- func (c Ring) JSONMGet(ctx context.Context, path string, keys ...string) *JSONSliceCmd
- func (c Ring) JSONMSet(ctx context.Context, params ...interface{}) *StatusCmd
- func (c Ring) JSONMSetArgs(ctx context.Context, docs []JSONSetArgs) *StatusCmd
- func (c Ring) JSONMerge(ctx context.Context, key, path string, value string) *StatusCmd
- func (c Ring) JSONNumIncrBy(ctx context.Context, key, path string, value float64) *JSONCmd
- func (c Ring) JSONObjKeys(ctx context.Context, key, path string) *SliceCmd
- func (c Ring) JSONObjLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Ring) JSONSet(ctx context.Context, key, path string, value interface{}) *StatusCmd
- func (c Ring) JSONSetMode(ctx context.Context, key, path string, value interface{}, mode string) *StatusCmd
- func (c Ring) JSONStrAppend(ctx context.Context, key, path, value string) *IntPointerSliceCmd
- func (c Ring) JSONStrLen(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Ring) JSONToggle(ctx context.Context, key, path string) *IntPointerSliceCmd
- func (c Ring) JSONType(ctx context.Context, key, path string) *JSONSliceCmd
- func (c Ring) Keys(ctx context.Context, pattern string) *StringSliceCmd
- func (c Ring) LCS(ctx context.Context, q *LCSQuery) *LCSCmd
- func (c Ring) LIndex(ctx context.Context, key string, index int64) *StringCmd
- func (c Ring) LInsert(ctx context.Context, key, op string, pivot, value interface{}) *IntCmd
- func (c Ring) LInsertAfter(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c Ring) LInsertBefore(ctx context.Context, key string, pivot, value interface{}) *IntCmd
- func (c Ring) LLen(ctx context.Context, key string) *IntCmd
- func (c Ring) LMPop(ctx context.Context, direction string, count int64, keys ...string) *KeyValuesCmd
- func (c Ring) LMove(ctx context.Context, source, destination, srcpos, destpos string) *StringCmd
- func (c Ring) LPop(ctx context.Context, key string) *StringCmd
- func (c Ring) LPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Ring) LPos(ctx context.Context, key string, value string, a LPosArgs) *IntCmd
- func (c Ring) LPosCount(ctx context.Context, key string, value string, count int64, a LPosArgs) *IntSliceCmd
- func (c Ring) LPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Ring) LPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Ring) LRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c Ring) LRem(ctx context.Context, key string, count int64, value interface{}) *IntCmd
- func (c Ring) LSet(ctx context.Context, key string, index int64, value interface{}) *StatusCmd
- func (c Ring) LTrim(ctx context.Context, key string, start, stop int64) *StatusCmd
- func (c Ring) LastSave(ctx context.Context) *IntCmd
- func (c Ring) Latency(ctx context.Context) *LatencyCmd
- func (c Ring) LatencyReset(ctx context.Context, events ...interface{}) *StatusCmd
- func (c *Ring) Len() int
- func (c Ring) MGet(ctx context.Context, keys ...string) *SliceCmd
- func (c Ring) MSet(ctx context.Context, values ...interface{}) *StatusCmd
- func (c Ring) MSetEX(ctx context.Context, args MSetEXArgs, values ...interface{}) *IntCmd
- func (c Ring) MSetNX(ctx context.Context, values ...interface{}) *BoolCmd
- func (c Ring) MemoryUsage(ctx context.Context, key string, samples ...int) *IntCmd
- func (c Ring) Migrate(ctx context.Context, host, port, key string, db int, timeout time.Duration) *StatusCmd
- func (c Ring) ModuleLoadex(ctx context.Context, conf *ModuleLoadexConfig) *StringCmd
- func (c Ring) Monitor(ctx context.Context, ch chan string) *MonitorCmd
- func (c Ring) Move(ctx context.Context, key string, db int) *BoolCmd
- func (c Ring) ObjectEncoding(ctx context.Context, key string) *StringCmd
- func (c Ring) ObjectFreq(ctx context.Context, key string) *IntCmd
- func (c Ring) ObjectIdleTime(ctx context.Context, key string) *DurationCmd
- func (c Ring) ObjectRefCount(ctx context.Context, key string) *IntCmd
- func (c *Ring) OnNewNode(fn func(rdb *Client))
- func (c *Ring) Options() *RingOptions
- func (c Ring) PExpire(ctx context.Context, key string, expiration time.Duration) *BoolCmd
- func (c Ring) PExpireAt(ctx context.Context, key string, tm time.Time) *BoolCmd
- func (c Ring) PExpireTime(ctx context.Context, key string) *DurationCmd
- func (c Ring) PFAdd(ctx context.Context, key string, els ...interface{}) *IntCmd
- func (c Ring) PFCount(ctx context.Context, keys ...string) *IntCmd
- func (c Ring) PFMerge(ctx context.Context, dest string, keys ...string) *StatusCmd
- func (c *Ring) PSubscribe(ctx context.Context, channels ...string) *PubSub
- func (c Ring) PTTL(ctx context.Context, key string) *DurationCmd
- func (c Ring) Persist(ctx context.Context, key string) *BoolCmd
- func (c Ring) Ping(ctx context.Context) *StatusCmd
- func (c *Ring) Pipeline() Pipeliner
- func (c *Ring) Pipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c *Ring) PoolStats() *PoolStats
- func (c *Ring) Process(ctx context.Context, cmd Cmder) error
- func (c Ring) PubSubChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c Ring) PubSubNumPat(ctx context.Context) *IntCmd
- func (c Ring) PubSubNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c Ring) PubSubShardChannels(ctx context.Context, pattern string) *StringSliceCmd
- func (c Ring) PubSubShardNumSub(ctx context.Context, channels ...string) *MapStringIntCmd
- func (c Ring) Publish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c Ring) Quit(_ context.Context) *StatusCmddeprecated
- func (c Ring) RPop(ctx context.Context, key string) *StringCmd
- func (c Ring) RPopCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Ring) RPopLPush(ctx context.Context, source, destination string) *StringCmddeprecated
- func (c Ring) RPush(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Ring) RPushX(ctx context.Context, key string, values ...interface{}) *IntCmd
- func (c Ring) RandomKey(ctx context.Context) *StringCmd
- func (c Ring) ReadOnly(ctx context.Context) *StatusCmd
- func (c Ring) ReadWrite(ctx context.Context) *StatusCmd
- func (c Ring) Rename(ctx context.Context, key, newkey string) *StatusCmd
- func (c Ring) RenameNX(ctx context.Context, key, newkey string) *BoolCmd
- func (c Ring) Restore(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c Ring) RestoreReplace(ctx context.Context, key string, ttl time.Duration, value string) *StatusCmd
- func (c Ring) SAdd(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Ring) SCard(ctx context.Context, key string) *IntCmd
- func (c Ring) SDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Ring) SDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Ring) SInter(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Ring) SInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c Ring) SInterStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Ring) SIsMember(ctx context.Context, key string, member interface{}) *BoolCmd
- func (c Ring) SMIsMember(ctx context.Context, key string, members ...interface{}) *BoolSliceCmd
- func (c Ring) SMembers(ctx context.Context, key string) *StringSliceCmd
- func (c Ring) SMembersMap(ctx context.Context, key string) *StringStructMapCmd
- func (c Ring) SMove(ctx context.Context, source, destination string, member interface{}) *BoolCmd
- func (c Ring) SPop(ctx context.Context, key string) *StringCmd
- func (c Ring) SPopN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c Ring) SPublish(ctx context.Context, channel string, message interface{}) *IntCmd
- func (c Ring) SRandMember(ctx context.Context, key string) *StringCmd
- func (c Ring) SRandMemberN(ctx context.Context, key string, count int64) *StringSliceCmd
- func (c Ring) SRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Ring) SScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c *Ring) SSubscribe(ctx context.Context, channels ...string) *PubSub
- func (c Ring) SUnion(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Ring) SUnionStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Ring) Save(ctx context.Context) *StatusCmd
- func (c Ring) Scan(ctx context.Context, cursor uint64, match string, count int64) *ScanCmd
- func (c Ring) ScanType(ctx context.Context, cursor uint64, match string, count int64, keyType string) *ScanCmd
- func (c Ring) ScriptExists(ctx context.Context, hashes ...string) *BoolSliceCmd
- func (c Ring) ScriptFlush(ctx context.Context) *StatusCmd
- func (c Ring) ScriptKill(ctx context.Context) *StatusCmd
- func (c Ring) ScriptLoad(ctx context.Context, script string) *StringCmd
- func (c Ring) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmd
- func (c *Ring) SetAddrs(addrs map[string]string)
- func (c Ring) SetArgs(ctx context.Context, key string, value interface{}, a SetArgs) *StatusCmd
- func (c Ring) SetBit(ctx context.Context, key string, offset int64, value int) *IntCmd
- func (c Ring) SetEx(ctx context.Context, key string, value interface{}, expiration time.Duration) *StatusCmddeprecated
- func (c Ring) SetIFDEQ(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c Ring) SetIFDEQGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c Ring) SetIFDNE(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StatusCmd
- func (c Ring) SetIFDNEGet(ctx context.Context, key string, value interface{}, matchDigest uint64, ...) *StringCmd
- func (c Ring) SetIFEQ(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c Ring) SetIFEQGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c Ring) SetIFNE(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StatusCmd
- func (c Ring) SetIFNEGet(ctx context.Context, key string, value interface{}, matchValue interface{}, ...) *StringCmd
- func (c Ring) SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmddeprecated
- func (c Ring) SetRange(ctx context.Context, key string, offset int64, value string) *IntCmd
- func (c Ring) SetXX(ctx context.Context, key string, value interface{}, expiration time.Duration) *BoolCmd
- func (c Ring) Shutdown(ctx context.Context) *StatusCmd
- func (c Ring) ShutdownNoSave(ctx context.Context) *StatusCmd
- func (c Ring) ShutdownSave(ctx context.Context) *StatusCmd
- func (c Ring) SlaveOf(ctx context.Context, host, port string) *StatusCmddeprecated
- func (c Ring) SlowLogGet(ctx context.Context, num int64) *SlowLogCmd
- func (c Ring) SlowLogLen(ctx context.Context) *IntCmd
- func (c Ring) SlowLogReset(ctx context.Context) *StatusCmd
- func (c Ring) Sort(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c Ring) SortInterfaces(ctx context.Context, key string, sort *Sort) *SliceCmd
- func (c Ring) SortRO(ctx context.Context, key string, sort *Sort) *StringSliceCmd
- func (c Ring) SortStore(ctx context.Context, key, store string, sort *Sort) *IntCmd
- func (c Ring) StrLen(ctx context.Context, key string) *IntCmd
- func (c *Ring) Subscribe(ctx context.Context, channels ...string) *PubSub
- func (c Ring) Sync(_ context.Context)
- func (c Ring) TDigestAdd(ctx context.Context, key string, elements ...float64) *StatusCmd
- func (c Ring) TDigestByRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c Ring) TDigestByRevRank(ctx context.Context, key string, rank ...uint64) *FloatSliceCmd
- func (c Ring) TDigestCDF(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c Ring) TDigestCreate(ctx context.Context, key string) *StatusCmd
- func (c Ring) TDigestCreateWithCompression(ctx context.Context, key string, compression int64) *StatusCmd
- func (c Ring) TDigestInfo(ctx context.Context, key string) *TDigestInfoCmd
- func (c Ring) TDigestMax(ctx context.Context, key string) *FloatCmd
- func (c Ring) TDigestMerge(ctx context.Context, destKey string, options *TDigestMergeOptions, ...) *StatusCmd
- func (c Ring) TDigestMin(ctx context.Context, key string) *FloatCmd
- func (c Ring) TDigestQuantile(ctx context.Context, key string, elements ...float64) *FloatSliceCmd
- func (c Ring) TDigestRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c Ring) TDigestReset(ctx context.Context, key string) *StatusCmd
- func (c Ring) TDigestRevRank(ctx context.Context, key string, values ...float64) *IntSliceCmd
- func (c Ring) TDigestTrimmedMean(ctx context.Context, key string, lowCutQuantile, highCutQuantile float64) *FloatCmd
- func (c Ring) TSAdd(ctx context.Context, key string, timestamp interface{}, value float64) *IntCmd
- func (c Ring) TSAddWithArgs(ctx context.Context, key string, timestamp interface{}, value float64, ...) *IntCmd
- func (c Ring) TSAlter(ctx context.Context, key string, options *TSAlterOptions) *StatusCmd
- func (c Ring) TSCreate(ctx context.Context, key string) *StatusCmd
- func (c Ring) TSCreateRule(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c Ring) TSCreateRuleWithArgs(ctx context.Context, sourceKey string, destKey string, aggregator Aggregator, ...) *StatusCmd
- func (c Ring) TSCreateWithArgs(ctx context.Context, key string, options *TSOptions) *StatusCmd
- func (c Ring) TSDecrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c Ring) TSDecrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c Ring) TSDel(ctx context.Context, Key string, fromTimestamp int, toTimestamp int) *IntCmd
- func (c Ring) TSDeleteRule(ctx context.Context, sourceKey string, destKey string) *StatusCmd
- func (c Ring) TSGet(ctx context.Context, key string) *TSTimestampValueCmd
- func (c Ring) TSGetWithArgs(ctx context.Context, key string, options *TSGetOptions) *TSTimestampValueCmd
- func (c Ring) TSIncrBy(ctx context.Context, Key string, timestamp float64) *IntCmd
- func (c Ring) TSIncrByWithArgs(ctx context.Context, key string, timestamp float64, options *TSIncrDecrOptions) *IntCmd
- func (c Ring) TSInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c Ring) TSInfoWithArgs(ctx context.Context, key string, options *TSInfoOptions) *MapStringInterfaceCmd
- func (c Ring) TSMAdd(ctx context.Context, ktvSlices [][]interface{}) *IntSliceCmd
- func (c Ring) TSMGet(ctx context.Context, filters []string) *MapStringSliceInterfaceCmd
- func (c Ring) TSMGetWithArgs(ctx context.Context, filters []string, options *TSMGetOptions) *MapStringSliceInterfaceCmd
- func (c Ring) TSMRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c Ring) TSMRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c Ring) TSMRevRange(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string) *MapStringSliceInterfaceCmd
- func (c Ring) TSMRevRangeWithArgs(ctx context.Context, fromTimestamp int, toTimestamp int, filterExpr []string, ...) *MapStringSliceInterfaceCmd
- func (c Ring) TSQueryIndex(ctx context.Context, filterExpr []string) *StringSliceCmd
- func (c Ring) TSRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c Ring) TSRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c Ring) TSRevRange(ctx context.Context, key string, fromTimestamp int, toTimestamp int) *TSTimestampValueSliceCmd
- func (c Ring) TSRevRangeWithArgs(ctx context.Context, key string, fromTimestamp int, toTimestamp int, ...) *TSTimestampValueSliceCmd
- func (c Ring) TTL(ctx context.Context, key string) *DurationCmd
- func (c Ring) Time(ctx context.Context) *TimeCmd
- func (c Ring) TopKAdd(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c Ring) TopKCount(ctx context.Context, key string, elements ...interface{}) *IntSliceCmd
- func (c Ring) TopKIncrBy(ctx context.Context, key string, elements ...interface{}) *StringSliceCmd
- func (c Ring) TopKInfo(ctx context.Context, key string) *TopKInfoCmd
- func (c Ring) TopKList(ctx context.Context, key string) *StringSliceCmd
- func (c Ring) TopKListWithCount(ctx context.Context, key string) *MapStringIntCmd
- func (c Ring) TopKQuery(ctx context.Context, key string, elements ...interface{}) *BoolSliceCmd
- func (c Ring) TopKReserve(ctx context.Context, key string, k int64) *StatusCmd
- func (c Ring) TopKReserveWithOptions(ctx context.Context, key string, k int64, width, depth int64, decay float64) *StatusCmd
- func (c Ring) Touch(ctx context.Context, keys ...string) *IntCmd
- func (c *Ring) TxPipeline() Pipeliner
- func (c *Ring) TxPipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error)
- func (c Ring) Type(ctx context.Context, key string) *StatusCmd
- func (c Ring) Unlink(ctx context.Context, keys ...string) *IntCmd
- func (c Ring) VAdd(ctx context.Context, key, element string, val Vector) *BoolCmd
- func (c Ring) VAddWithArgs(ctx context.Context, key, element string, val Vector, addArgs *VAddArgs) *BoolCmd
- func (c Ring) VCard(ctx context.Context, key string) *IntCmd
- func (c Ring) VClearAttributes(ctx context.Context, key, element string) *BoolCmd
- func (c Ring) VDim(ctx context.Context, key string) *IntCmd
- func (c Ring) VEmb(ctx context.Context, key, element string, raw bool) *SliceCmd
- func (c Ring) VGetAttr(ctx context.Context, key, element string) *StringCmd
- func (c Ring) VInfo(ctx context.Context, key string) *MapStringInterfaceCmd
- func (c Ring) VLinks(ctx context.Context, key, element string) *StringSliceCmd
- func (c Ring) VLinksWithScores(ctx context.Context, key, element string) *VectorScoreSliceCmd
- func (c Ring) VRandMember(ctx context.Context, key string) *StringCmd
- func (c Ring) VRandMemberCount(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Ring) VRange(ctx context.Context, key, start, end string, count int64) *StringSliceCmd
- func (c Ring) VRem(ctx context.Context, key, element string) *BoolCmd
- func (c Ring) VSetAttr(ctx context.Context, key, element string, attr interface{}) *BoolCmd
- func (c Ring) VSim(ctx context.Context, key string, val Vector) *StringSliceCmd
- func (c Ring) VSimWithArgs(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *StringSliceCmd
- func (c Ring) VSimWithArgsWithScores(ctx context.Context, key string, val Vector, simArgs *VSimArgs) *VectorScoreSliceCmd
- func (c Ring) VSimWithScores(ctx context.Context, key string, val Vector) *VectorScoreSliceCmd
- func (c Ring) Wait(ctx context.Context, numSlaves int, timeout time.Duration) *IntCmd
- func (c Ring) WaitAOF(ctx context.Context, numLocal, numSlaves int, timeout time.Duration) *IntCmd
- func (c *Ring) Watch(ctx context.Context, fn func(*Tx) error, keys ...string) error
- func (c Ring) XAck(ctx context.Context, stream, group string, ids ...string) *IntCmd
- func (c Ring) XAckDel(ctx context.Context, stream string, group string, mode string, ids ...string) *SliceCmd
- func (c Ring) XAdd(ctx context.Context, a *XAddArgs) *StringCmd
- func (c Ring) XAutoClaim(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimCmd
- func (c Ring) XAutoClaimJustID(ctx context.Context, a *XAutoClaimArgs) *XAutoClaimJustIDCmd
- func (c Ring) XCfgSet(ctx context.Context, a *XCfgSetArgs) *StatusCmd
- func (c Ring) XClaim(ctx context.Context, a *XClaimArgs) *XMessageSliceCmd
- func (c Ring) XClaimJustID(ctx context.Context, a *XClaimArgs) *StringSliceCmd
- func (c Ring) XDel(ctx context.Context, stream string, ids ...string) *IntCmd
- func (c Ring) XDelEx(ctx context.Context, stream string, mode string, ids ...string) *SliceCmd
- func (c Ring) XGroupCreate(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Ring) XGroupCreateConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c Ring) XGroupCreateMkStream(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Ring) XGroupDelConsumer(ctx context.Context, stream, group, consumer string) *IntCmd
- func (c Ring) XGroupDestroy(ctx context.Context, stream, group string) *IntCmd
- func (c Ring) XGroupSetID(ctx context.Context, stream, group, start string) *StatusCmd
- func (c Ring) XInfoConsumers(ctx context.Context, key string, group string) *XInfoConsumersCmd
- func (c Ring) XInfoGroups(ctx context.Context, key string) *XInfoGroupsCmd
- func (c Ring) XInfoStream(ctx context.Context, key string) *XInfoStreamCmd
- func (c Ring) XInfoStreamFull(ctx context.Context, key string, count int) *XInfoStreamFullCmd
- func (c Ring) XLen(ctx context.Context, stream string) *IntCmd
- func (c Ring) XPending(ctx context.Context, stream, group string) *XPendingCmd
- func (c Ring) XPendingExt(ctx context.Context, a *XPendingExtArgs) *XPendingExtCmd
- func (c Ring) XRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c Ring) XRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c Ring) XRead(ctx context.Context, a *XReadArgs) *XStreamSliceCmd
- func (c Ring) XReadGroup(ctx context.Context, a *XReadGroupArgs) *XStreamSliceCmd
- func (c Ring) XReadStreams(ctx context.Context, streams ...string) *XStreamSliceCmd
- func (c Ring) XRevRange(ctx context.Context, stream, start, stop string) *XMessageSliceCmd
- func (c Ring) XRevRangeN(ctx context.Context, stream, start, stop string, count int64) *XMessageSliceCmd
- func (c Ring) XTrimMaxLen(ctx context.Context, key string, maxLen int64) *IntCmd
- func (c Ring) XTrimMaxLenApprox(ctx context.Context, key string, maxLen, limit int64) *IntCmd
- func (c Ring) XTrimMaxLenApproxMode(ctx context.Context, key string, maxLen, limit int64, mode string) *IntCmd
- func (c Ring) XTrimMaxLenMode(ctx context.Context, key string, maxLen int64, mode string) *IntCmd
- func (c Ring) XTrimMinID(ctx context.Context, key string, minID string) *IntCmd
- func (c Ring) XTrimMinIDApprox(ctx context.Context, key string, minID string, limit int64) *IntCmd
- func (c Ring) XTrimMinIDApproxMode(ctx context.Context, key string, minID string, limit int64, mode string) *IntCmd
- func (c Ring) XTrimMinIDMode(ctx context.Context, key string, minID string, mode string) *IntCmd
- func (c Ring) ZAdd(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Ring) ZAddArgs(ctx context.Context, key string, args ZAddArgs) *IntCmd
- func (c Ring) ZAddArgsIncr(ctx context.Context, key string, args ZAddArgs) *FloatCmd
- func (c Ring) ZAddGT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Ring) ZAddLT(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Ring) ZAddNX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Ring) ZAddXX(ctx context.Context, key string, members ...Z) *IntCmd
- func (c Ring) ZCard(ctx context.Context, key string) *IntCmd
- func (c Ring) ZCount(ctx context.Context, key, min, max string) *IntCmd
- func (c Ring) ZDiff(ctx context.Context, keys ...string) *StringSliceCmd
- func (c Ring) ZDiffStore(ctx context.Context, destination string, keys ...string) *IntCmd
- func (c Ring) ZDiffWithScores(ctx context.Context, keys ...string) *ZSliceCmd
- func (c Ring) ZIncrBy(ctx context.Context, key string, increment float64, member string) *FloatCmd
- func (c Ring) ZInter(ctx context.Context, store *ZStore) *StringSliceCmd
- func (c Ring) ZInterCard(ctx context.Context, limit int64, keys ...string) *IntCmd
- func (c Ring) ZInterStore(ctx context.Context, destination string, store *ZStore) *IntCmd
- func (c Ring) ZInterWithScores(ctx context.Context, store *ZStore) *ZSliceCmd
- func (c Ring) ZLexCount(ctx context.Context, key, min, max string) *IntCmd
- func (c Ring) ZMPop(ctx context.Context, order string, count int64, keys ...string) *ZSliceWithKeyCmd
- func (c Ring) ZMScore(ctx context.Context, key string, members ...string) *FloatSliceCmd
- func (c Ring) ZPopMax(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c Ring) ZPopMin(ctx context.Context, key string, count ...int64) *ZSliceCmd
- func (c Ring) ZRandMember(ctx context.Context, key string, count int) *StringSliceCmd
- func (c Ring) ZRandMemberWithScores(ctx context.Context, key string, count int) *ZSliceCmd
- func (c Ring) ZRange(ctx context.Context, key string, start, stop int64) *StringSliceCmd
- func (c Ring) ZRangeArgs(ctx context.Context, z ZRangeArgs) *StringSliceCmd
- func (c Ring) ZRangeArgsWithScores(ctx context.Context, z ZRangeArgs) *ZSliceCmd
- func (c Ring) ZRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Ring) ZRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Ring) ZRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c Ring) ZRangeStore(ctx context.Context, dst string, z ZRangeArgs) *IntCmd
- func (c Ring) ZRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c Ring) ZRank(ctx context.Context, key, member string) *IntCmd
- func (c Ring) ZRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c Ring) ZRem(ctx context.Context, key string, members ...interface{}) *IntCmd
- func (c Ring) ZRemRangeByLex(ctx context.Context, key, min, max string) *IntCmd
- func (c Ring) ZRemRangeByRank(ctx context.Context, key string, start, stop int64) *IntCmd
- func (c Ring) ZRemRangeByScore(ctx context.Context, key, min, max string) *IntCmd
- func (c Ring) ZRevRange(ctx context.Context, key string, start, stop int64) *StringSliceCmddeprecated
- func (c Ring) ZRevRangeByLex(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Ring) ZRevRangeByScore(ctx context.Context, key string, opt *ZRangeBy) *StringSliceCmddeprecated
- func (c Ring) ZRevRangeByScoreWithScores(ctx context.Context, key string, opt *ZRangeBy) *ZSliceCmd
- func (c Ring) ZRevRangeWithScores(ctx context.Context, key string, start, stop int64) *ZSliceCmd
- func (c Ring) ZRevRank(ctx context.Context, key, member string) *IntCmd
- func (c Ring) ZRevRankWithScore(ctx context.Context, key, member string) *RankWithScoreCmd
- func (c Ring) ZScan(ctx context.Context, key string, cursor uint64, match string, count int64) *ScanCmd
- func (c Ring) ZScore(ctx context.Context, key, member string) *FloatCmd
- func (c Ring) ZUnion(ctx context.Context, store ZStore) *StringSliceCmd
- func (c Ring) ZUnionStore(ctx context.Context, dest string, store *ZStore) *IntCmd
- func (c Ring) ZUnionWithScores(ctx context.Context, store ZStore) *ZSliceCmd
- type RingOptions
- type RunningScript
- type ScanCmd
- func (cmd *ScanCmd) Args() []interface{}
- func (cmd *ScanCmd) Clone() Cmder
- func (cmd *ScanCmd) Err() error
- func (cmd *ScanCmd) FullName() string
- func (cmd *ScanCmd) GetCmdType() CmdType
- func (cmd *ScanCmd) Iterator() *ScanIterator
- func (cmd *ScanCmd) Name() string
- func (cmd *ScanCmd) Result() (keys []string, cursor uint64, err error)
- func (cmd *ScanCmd) SetErr(e error)
- func (cmd *ScanCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *ScanCmd) SetStepCount(stepCount int8)
- func (cmd *ScanCmd) SetVal(page []string, cursor uint64)
- func (cmd *ScanCmd) String() string
- func (cmd *ScanCmd) Val() (keys []string, cursor uint64)
- type ScanDump
- type ScanDumpCmd
- func (cmd *ScanDumpCmd) Args() []interface{}
- func (cmd *ScanDumpCmd) Clone() Cmder
- func (cmd *ScanDumpCmd) Err() error
- func (cmd *ScanDumpCmd) FullName() string
- func (cmd *ScanDumpCmd) GetCmdType() CmdType
- func (cmd *ScanDumpCmd) Name() string
- func (cmd *ScanDumpCmd) Result() (ScanDump, error)
- func (cmd *ScanDumpCmd) SetErr(e error)
- func (cmd *ScanDumpCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *ScanDumpCmd) SetStepCount(stepCount int8)
- func (cmd *ScanDumpCmd) SetVal(val ScanDump)
- func (cmd *ScanDumpCmd) String() string
- func (cmd *ScanDumpCmd) Val() ScanDump
- type ScanIterator
- type Scanner
- type Script
- func (s *Script) Eval(ctx context.Context, c Scripter, keys []string, args ...interface{}) *Cmd
- func (s *Script) EvalRO(ctx context.Context, c Scripter, keys []string, args ...interface{}) *Cmd
- func (s *Script) EvalSha(ctx context.Context, c Scripter, keys []string, args ...interface{}) *Cmd
- func (s *Script) EvalShaRO(ctx context.Context, c Scripter, keys []string, args ...interface{}) *Cmd
- func (s *Script) Exists(ctx context.Context, c Scripter) *BoolSliceCmd
- func (s *Script) Hash() string
- func (s *Script) Load(ctx context.Context, c Scripter) *StringCmd
- func (s *Script) Run(ctx context.Context, c Scripter, keys []string, args ...interface{}) *Cmd
- func (s *Script) RunRO(ctx context.Context, c Scripter, keys []string, args ...interface{}) *Cmd
- type Scripter
- type ScriptingFunctionsCmdable
- type SearchAggregator
- type SearchBuilder
- func (b *SearchBuilder) CountOnly() *SearchBuilder
- func (b *SearchBuilder) Dialect(version int) *SearchBuilder
- func (b *SearchBuilder) Expander(expander string) *SearchBuilder
- func (b *SearchBuilder) ExplainScore() *SearchBuilder
- func (b *SearchBuilder) Filter(field string, min, max interface{}) *SearchBuilder
- func (b *SearchBuilder) GeoFilter(field string, lon, lat, radius float64, unit string) *SearchBuilder
- func (b *SearchBuilder) InFields(fields ...interface{}) *SearchBuilder
- func (b *SearchBuilder) InKeys(keys ...interface{}) *SearchBuilder
- func (b *SearchBuilder) InOrder() *SearchBuilder
- func (b *SearchBuilder) Language(lang string) *SearchBuilder
- func (b *SearchBuilder) Limit(offset, count int) *SearchBuilder
- func (b *SearchBuilder) NoContent() *SearchBuilder
- func (b *SearchBuilder) NoStopWords() *SearchBuilder
- func (b *SearchBuilder) Param(key string, value interface{}) *SearchBuilder
- func (b *SearchBuilder) ParamsMap(p map[string]interface{}) *SearchBuilder
- func (b *SearchBuilder) Payload(payload string) *SearchBuilder
- func (b *SearchBuilder) ReturnAs(field, alias string) *SearchBuilder
- func (b *SearchBuilder) ReturnFields(fields ...string) *SearchBuilder
- func (b *SearchBuilder) Run() (FTSearchResult, error)
- func (b *SearchBuilder) Scorer(scorer string) *SearchBuilder
- func (b *SearchBuilder) Slop(slop int) *SearchBuilder
- func (b *SearchBuilder) SortBy(field string, asc bool) *SearchBuilder
- func (b *SearchBuilder) Timeout(timeout int) *SearchBuilder
- func (b *SearchBuilder) Verbatim() *SearchBuilder
- func (b *SearchBuilder) WithPayloads() *SearchBuilder
- func (b *SearchBuilder) WithScores() *SearchBuilder
- func (b *SearchBuilder) WithSortByCount() *SearchBuilder
- func (b *SearchBuilder) WithSortKeys() *SearchBuilder
- type SearchCmdable
- type SearchFieldType
- type SearchQuery
- type SentinelClient
- func (c *SentinelClient) CkQuorum(ctx context.Context, name string) *StringCmd
- func (c SentinelClient) Close() error
- func (c *SentinelClient) Failover(ctx context.Context, name string) *StatusCmd
- func (c *SentinelClient) FlushConfig(ctx context.Context) *StatusCmd
- func (c *SentinelClient) GetMasterAddrByName(ctx context.Context, name string) *StringSliceCmd
- func (c *SentinelClient) GetPushNotificationHandler(pushNotificationName string) push.NotificationHandler
- func (c *SentinelClient) Master(ctx context.Context, name string) *MapStringStringCmd
- func (c *SentinelClient) Masters(ctx context.Context) *SliceCmd
- func (c *SentinelClient) Monitor(ctx context.Context, name, ip, port, quorum string) *StringCmd
- func (c *SentinelClient) PSubscribe(ctx context.Context, channels ...string) *PubSub
- func (c *SentinelClient) Ping(ctx context.Context) *StringCmd
- func (c *SentinelClient) Process(ctx context.Context, cmd Cmder) error
- func (c *SentinelClient) RegisterPushNotificationHandler(pushNotificationName string, handler push.NotificationHandler, protected bool) error
- func (c *SentinelClient) Remove(ctx context.Context, name string) *StringCmd
- func (c *SentinelClient) Replicas(ctx context.Context, name string) *MapStringStringSliceCmd
- func (c *SentinelClient) Reset(ctx context.Context, pattern string) *IntCmd
- func (c *SentinelClient) Sentinels(ctx context.Context, name string) *MapStringStringSliceCmd
- func (c *SentinelClient) Set(ctx context.Context, name, option, value string) *StringCmd
- func (c SentinelClient) String() string
- func (c *SentinelClient) Subscribe(ctx context.Context, channels ...string) *PubSub
- type SetArgs
- type SetCmdable
- type SetCondition
- type SliceCmd
- func (cmd *SliceCmd) Args() []interface{}
- func (cmd *SliceCmd) Clone() Cmder
- func (cmd *SliceCmd) Err() error
- func (cmd *SliceCmd) FullName() string
- func (cmd *SliceCmd) GetCmdType() CmdType
- func (cmd *SliceCmd) Name() string
- func (cmd *SliceCmd) Result() ([]interface{}, error)
- func (cmd *SliceCmd) Scan(dst interface{}) error
- func (cmd *SliceCmd) SetErr(e error)
- func (cmd *SliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *SliceCmd) SetStepCount(stepCount int8)
- func (cmd *SliceCmd) SetVal(val []interface{})
- func (cmd *SliceCmd) String() string
- func (cmd *SliceCmd) Val() []interface{}
- type SlotRange
- type SlowLog
- type SlowLogCmd
- func (cmd *SlowLogCmd) Args() []interface{}
- func (cmd *SlowLogCmd) Clone() Cmder
- func (cmd *SlowLogCmd) Err() error
- func (cmd *SlowLogCmd) FullName() string
- func (cmd *SlowLogCmd) GetCmdType() CmdType
- func (cmd *SlowLogCmd) Name() string
- func (cmd *SlowLogCmd) Result() ([]SlowLog, error)
- func (cmd *SlowLogCmd) SetErr(e error)
- func (cmd *SlowLogCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *SlowLogCmd) SetStepCount(stepCount int8)
- func (cmd *SlowLogCmd) SetVal(val []SlowLog)
- func (cmd *SlowLogCmd) String() string
- func (cmd *SlowLogCmd) Val() []SlowLog
- type Sort
- type SortedSetCmdable
- type SpellCheckBuilder
- type SpellCheckResult
- type SpellCheckSuggestion
- type SpellCheckTerms
- type StatefulCmdable
- type StatusCmd
- func (cmd *StatusCmd) Args() []interface{}
- func (cmd *StatusCmd) Bytes() ([]byte, error)
- func (cmd *StatusCmd) Clone() Cmder
- func (cmd *StatusCmd) Err() error
- func (cmd *StatusCmd) FullName() string
- func (cmd *StatusCmd) GetCmdType() CmdType
- func (cmd *StatusCmd) Name() string
- func (cmd *StatusCmd) Result() (string, error)
- func (cmd *StatusCmd) SetErr(e error)
- func (cmd *StatusCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *StatusCmd) SetStepCount(stepCount int8)
- func (cmd *StatusCmd) SetVal(val string)
- func (cmd *StatusCmd) String() string
- func (cmd *StatusCmd) Val() string
- type StreamCmdable
- type StringCmd
- func (cmd *StringCmd) Args() []interface{}
- func (cmd *StringCmd) Bool() (bool, error)
- func (cmd *StringCmd) Bytes() ([]byte, error)
- func (cmd *StringCmd) Clone() Cmder
- func (cmd *StringCmd) Err() error
- func (cmd *StringCmd) Float32() (float32, error)
- func (cmd *StringCmd) Float64() (float64, error)
- func (cmd *StringCmd) FullName() string
- func (cmd *StringCmd) GetCmdType() CmdType
- func (cmd *StringCmd) Int() (int, error)
- func (cmd *StringCmd) Int64() (int64, error)
- func (cmd *StringCmd) Name() string
- func (cmd *StringCmd) Result() (string, error)
- func (cmd *StringCmd) Scan(val interface{}) error
- func (cmd *StringCmd) SetErr(e error)
- func (cmd *StringCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *StringCmd) SetStepCount(stepCount int8)
- func (cmd *StringCmd) SetVal(val string)
- func (cmd *StringCmd) String() string
- func (cmd *StringCmd) Time() (time.Time, error)
- func (cmd *StringCmd) Uint64() (uint64, error)
- func (cmd *StringCmd) Val() string
- type StringCmdable
- type StringSliceCmd
- func (cmd *StringSliceCmd) Args() []interface{}
- func (cmd *StringSliceCmd) Clone() Cmder
- func (cmd *StringSliceCmd) Err() error
- func (cmd *StringSliceCmd) FullName() string
- func (cmd *StringSliceCmd) GetCmdType() CmdType
- func (cmd *StringSliceCmd) Name() string
- func (cmd *StringSliceCmd) Result() ([]string, error)
- func (cmd *StringSliceCmd) ScanSlice(container interface{}) error
- func (cmd *StringSliceCmd) SetErr(e error)
- func (cmd *StringSliceCmd) SetFirstKeyPos(keyPos int8)
- func (cmd *StringSliceCmd) SetStepCount(stepCount int8)
- func (cmd *StringSliceCmd) SetVal(val []string)
- func (cmd *StringSliceCmd) String() string
- func (cmd *StringSliceC