Documentation ¶
Index ¶
- Variables
- func MustSetUp(config *Config)
- func SetUp(config *Config) (err error)
- type Client
- func (client *Client) DBSize(ctx context.Context) (int64, error)
- func (client *Client) Del(ctx context.Context, keys ...string) (int64, error)
- func (client *Client) EvalSha(sha1 string, keys []string, args ...interface{}) (interface{}, error)
- func (client *Client) Exists(ctx context.Context, keys ...string) (bool, error)
- func (client *Client) Expire(ctx context.Context, key string, expiration time.Duration) (bool, error)
- func (client *Client) ExpireAt(ctx context.Context, key string, tm time.Time) (bool, error)
- func (client *Client) FlushAll(ctx context.Context) (string, error)
- func (client *Client) FlushAllAsync(ctx context.Context) (string, error)
- func (client *Client) FlushDB(ctx context.Context) (string, error)
- func (client *Client) FlushDBAsync(ctx context.Context) (string, error)
- func (client *Client) GeoAdd(ctx context.Context, key string, geoLocation ...*redis.GeoLocation) (int64, error)
- func (client *Client) GeoDist(ctx context.Context, key string, member1, member2, unit string) (float64, error)
- func (client *Client) GeoPos(ctx context.Context, key string, members ...string) ([]*redis.GeoPos, error)
- func (client *Client) Get(ctx context.Context, key string) (string, error)
- func (client *Client) GetGoRedisClient() redis.UniversalClient
- func (client *Client) GetMode() Mode
- func (client *Client) GetWithoutRedisNil(ctx context.Context, key string) (string, error)
- func (client *Client) HDel(ctx context.Context, key string, fields ...string) (int64, error)
- func (client *Client) HGet(ctx context.Context, key, field string) (string, error)
- func (client *Client) HGetAll(ctx context.Context, key string) (map[string]string, error)
- func (client *Client) HKeys(ctx context.Context, key string) ([]string, error)
- func (client *Client) HScan(ctx context.Context, key string, cursor uint64, match string, count int64) ([]string, uint64, error)
- func (client *Client) HSet(ctx context.Context, key string, values ...interface{}) (int64, error)
- func (client *Client) HSetNX(ctx context.Context, key, field string, value interface{}) (bool, error)
- func (client *Client) Keys(ctx context.Context, pattern string) ([]string, error)deprecated
- func (client *Client) LPop(ctx context.Context, key string) (string, error)
- func (client *Client) LPush(ctx context.Context, key string, values ...interface{}) (int64, error)
- func (client *Client) LPushX(ctx context.Context, key string, values ...interface{}) (int64, error)
- func (client *Client) MGet(ctx context.Context, keys ...string) ([]interface{}, error)
- func (client *Client) MSet(ctx context.Context, values ...interface{}) (bool, error)
- func (client *Client) MSetNX(ctx context.Context, values ...interface{}) (bool, error)
- func (client *Client) NewDistributedMutex(name string, options ...redsync.Option) *redsync.Mutex
- func (client *Client) PSubscribe(ctx context.Context, patterns ...string) *redis.PubSub
- func (client *Client) Persist(ctx context.Context, key string) (bool, error)
- func (client *Client) Ping(ctx context.Context) (string, error)
- func (client *Client) Pipeline() redis.Pipeliner
- func (client *Client) Publish(ctx context.Context, channel string, message interface{}) (int64, error)
- func (client *Client) RandomKey(ctx context.Context) (string, error)
- func (client *Client) Rename(ctx context.Context, key, newKey string) (string, error)
- func (client *Client) RenameNX(ctx context.Context, key, newKey string) (bool, error)
- func (client *Client) SAdd(ctx context.Context, key string, members ...interface{}) (int64, error)
- func (client *Client) SMembers(ctx context.Context, key string) ([]string, error)deprecated
- func (client *Client) SMembersMap(ctx context.Context, key string) (map[string]struct{}, error)deprecated
- func (client *Client) SPop(ctx context.Context, key string) (string, error)
- func (client *Client) SPopN(ctx context.Context, key string, count int64) ([]string, error)
- func (client *Client) SRandMember(ctx context.Context, key string) (string, error)
- func (client *Client) SRandMemberN(ctx context.Context, key string, count int64) ([]string, error)
- func (client *Client) SRem(ctx context.Context, key string, members ...interface{}) (int64, error)
- func (client *Client) SSubscribe(ctx context.Context, channels ...string) *redis.PubSub
- func (client *Client) Scan(ctx context.Context, cursor uint64, match string, count int64) ([]string, uint64, error)deprecated
- func (client *Client) ScanFully(ctx context.Context, match string, count int64) ([]string, error)
- func (client *Client) ScriptLoad(script string) (string, error)
- func (client *Client) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) (bool, error)
- func (client *Client) SetEx(ctx context.Context, key string, value interface{}, expiration time.Duration) (bool, error)
- func (client *Client) SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) (bool, error)
- func (client *Client) Subscribe(ctx context.Context, channels ...string) *redis.PubSub
- func (client *Client) TTL(ctx context.Context, key string) (time.Duration, error)
- func (client *Client) TxPipeline() redis.Pipeliner
- func (client *Client) Type(ctx context.Context, key string) (string, error)
- func (client *Client) ZAdd(ctx context.Context, key string, members ...redis.Z) (int64, error)
- func (client *Client) ZCard(ctx context.Context, key string) (int64, error)
- func (client *Client) ZCount(ctx context.Context, key, min, max string) (int64, error)
- func (client *Client) ZRangeByScore(ctx context.Context, key string, opt *redis.ZRangeBy) ([]string, error)
- func (client *Client) ZRangeByScoreWithScores(ctx context.Context, key string, opt *redis.ZRangeBy) ([]redis.Z, error)
- func (client *Client) ZRem(ctx context.Context, key string, members ...interface{}) (int64, error)
- func (client *Client) ZRevRangeByScore(ctx context.Context, key string, opt *redis.ZRangeBy) ([]string, error)
- func (client *Client) ZRevRangeByScoreWithScores(ctx context.Context, key string, opt *redis.ZRangeBy) ([]redis.Z, error)
- type ClusterConfig
- type Config
- type MasterSlaverConfig
- type Mode
- type SentinelConfig
- type SingleNodeConfig
Constants ¶
This section is empty.
Variables ¶
var (
NotSetupError = errorKit.Simple("hasn't been set up")
)
Functions ¶
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func NewClient ¶
NewClient 新建一个go-redis客户端(内置连接池,调用方无需额外考虑并发问题)
!!!: 每一个命令都会重新取得一个连接,执行后立即回收,而且回收到资源池的顺序类似于堆. https://www.cnblogs.com/yangqi7/p/13289232.html
连接哨兵集群的demo: https://blog.csdn.net/supery071/article/details/109491404
@return cluster模式下,第1个返回值的类型: *redis.ClusterClient
func (*Client) Exists ¶
Exists
命令说明: 检查给定 key 是否存在. 命令语法: EXISTS KEY_NAME 命令返回值: 若 key 存在返回 1 ,否则返回 0.
func (*Client) Expire ¶
func (client *Client) Expire(ctx context.Context, key string, expiration time.Duration) (bool, error)
Expire
命令说明: 设置 key 的过期时间,key 过期后将不再可用。单位以秒计。 命令语法: Expire KEY_NAME TIME_IN_SECONDS 命令返回值: 设置成功返回 1 。 当 key 不存在或者不能为 key 设置过期时间时(比如在低于 2.1.3 版本的 Redis 中你尝试更新 key 的过期时间)返回 0 。
e.g. key不存在 => (false, nil) key存在 => (true, nil)
func (*Client) ExpireAt ¶
ExpireAt
命令说明: 以 UNIX 时间戳(unix timestamp)格式设置 key 的过期时间。key 过期后将不再可用。 命令语法: Expireat KEY_NAME TIME_IN_UNIX_TIMESTAMP 命令返回值: 设置成功返回 1 。 当 key 不存在或者不能为 key 设置过期时间时(比如在低于 2.1.3 版本的 Redis 中你尝试更新 key 的过期时间)返回 0 。
func (*Client) FlushAll ¶
FlushAll
命令说明: 清空整个 Redis 服务器的数据(删除所有数据库的所有 key ). 命令语法: FLUSHALL 命令返回值: 总是返回 OK .
func (*Client) FlushAllAsync ¶
FlushAllAsync 异步地.
func (*Client) FlushDBAsync ¶
FlushDBAsync 异步地.
func (*Client) GeoAdd ¶
func (client *Client) GeoAdd(ctx context.Context, key string, geoLocation ...*redis.GeoLocation) (int64, error)
GeoAdd
命令说明: 存储指定的地理空间位置,可以将一个或多个经度(longitude)、纬度(latitude)、位置名称(member)添加到指定的 key 中. 命令语法: GEOADD key longitude latitude member [longitude latitude member ...]
func (*Client) GeoDist ¶
func (client *Client) GeoDist(ctx context.Context, key string, member1, member2, unit string) (float64, error)
GeoDist
命令说明: 用于返回两个给定位置之间的距离. 命令语法: GEODIST key member1 member2 [m|km|ft|mi]
func (*Client) GeoPos ¶
func (client *Client) GeoPos(ctx context.Context, key string, members ...string) ([]*redis.GeoPos, error)
GeoPos
命令说明: 从给定的 key 里返回所有指定名称(member)的位置(经度和纬度),不存在的返回 nil。 命令语法: GEOPOS key member [member ...]
func (*Client) Get ¶
Get
命令说明: 获取指定 key 的值。(如果 key 不存在,返回 nil;如果key 储存的值不是字符串类型,返回一个错误) 命令语法: GET KEY_NAME 命令返回值: 返回 key 的值,如果 key 不存在时,返回 nil。 如果 key 不是字符串类型,那么返回一个错误。
e.g. 当前db中不存在 传参key => ("", redis.Nil)
func (*Client) GetGoRedisClient ¶
func (client *Client) GetGoRedisClient() redis.UniversalClient
GetGoRedisClient 返回go-redis客户端
func (*Client) GetWithoutRedisNil ¶
GetWithoutRedisNil 对 Get 进行封装(特殊处理): 当前db中不存在传参key时,返回 ("", nil).
PS: (1) 如果当前db中不存在传参key,将返回 ("", nil) (2) 如果不关心key是否存在,只关心值,可以调用此方法 (3) 如果对应value的类型不为string,会返回error: WRONGTYPE Operation against a key holding the wrong kind of value
func (*Client) HDel ¶
HDel
命令说明: 删除哈希表 key 中的一个或多个指定字段,不存在的字段将被忽略。 命令语法: HDEL KEY_NAME FIELD1.. FIELDN 命令返回值: 被成功删除字段的数量,不包括被忽略的字段。
func (*Client) HGet ¶
HGet
命令说明: 返回哈希表中指定字段的值。 命令语法: HGET KEY_NAME FIELD_NAME 命令返回值: 返回给定字段的值。如果给定的字段或 key 不存在时,返回 nil 。
func (*Client) HGetAll ¶
HGetAll
命令说明:
返回哈希表中,所有的字段和值。 在返回值里,紧跟每个字段名(field name)之后是字段的值(value),所以返回值的长度是哈希表大小的两倍。
命令语法: HGETALL KEY_NAME 命令返回值: 以列表形式返回哈希表的字段及字段值。 若 key 不存在,返回空列表。
func (*Client) HSet ¶
HSet 将哈希表 key 中的字段 field 的值设为 value
命令说明:
为哈希表中的字段赋值 。 PS: (1) 如果哈希表不存在,一个新的哈希表被创建并进行 HSET 操作。 (2) 如果字段已经存在于哈希表中,旧值将被覆盖。
命令语法: HSET KEY_NAME FIELD VALUE 命令返回值: 如果字段是哈希表中的一个新建字段,并且值设置成功,返回 1 。 如果哈希表中域字段已经存在且旧值已被新值覆盖,返回 0 。
PS: (1) 3个传参都可以为""(3个全是""也可以); (2) 可以一次性设置多对 field 和 value.
@param key 如果db中不存在,会自动创建 @param values accepts values in following formats:
("myhash", "key1", "value1", "key2", "value2") ("myhash", []string{"key1", "value1", "key2", "value2"}) ("myhash", map[string]interface{}{"key1": "value1", "key2": "value2"})
func (*Client) HSetNX ¶
func (client *Client) HSetNX(ctx context.Context, key, field string, value interface{}) (bool, error)
HSetNX 只有在 字段field 不存在时,设置哈希表字段的值
命令说明:
为哈希表中不存在的的字段赋值。 PS: (1) 如果哈希表不存在,一个新的哈希表被创建并进行 HSET 操作。 (2) 如果字段已经存在于哈希表中,操作无效。 (3) 如果 key 不存在,一个新哈希表被创建并执行 HSETNX 命令。
命令语法: HSETNX KEY_NAME FIELD VALUE 命令返回值: 设置成功,返回 1 。 如果给定字段已经存在且没有操作被执行,返回 0 。
PS: (1) 如果field未存在,将返回: (true, nil). (2) 如果field已存在,将返回: (false, nil),且 此次设置哈希表字段的值 将无效.
@param key 如果db中不存在,会自动创建
func (*Client) LPop ¶
LPop 移除并返回列表的第一个元素
PS: 如果移除后列表为空。将删除该key.
@return key不存在的情况,将返回 ("", redis.Nil)
func (*Client) LPush ¶
LPush 将一个或多个值插入到列表头部
语法: LPUSH key value1 [value2]
@param key 不存在的话,会自动创建此key
func (*Client) LPushX ¶
LPushX 将一个或多个值插入到列表头部
PS: (1) 如果 key 不存在,一个空列表会被创建并执行 LPUSH 操作; (2) 当 key 存在但不是列表类型时,返回一个错误。
@return key不存在的话,将返回 (0, nil)
func (*Client) MGet ¶
MGet
命令说明: 返回所有(一个或多个)给定 key 的值。 如果给定的 key 里面,有某个 key 不存在,那么这个 key 返回特殊值 nil 。 命令语法: MGET KEY1 KEY2 .. KEYN 命令返回值: 一个包含所有给定 key 的值的列表。
func (*Client) MSet ¶
MSet
命令说明: 同时设置一个或多个 key-value 对。 命令语法: MSET key1 value1 key2 value2 .. keyN valueN 命令返回值: 总是返回 OK 。
func (*Client) MSetNX ¶
MSetNX
命令说明: 所有给定 key 都不存在时,同时设置一个或多个 key-value 对。 命令语法: MSETNX key1 value1 key2 value2 .. keyN valueN 命令返回值: 当所有 key 都成功设置,返回 1 。 如果所有给定 key 都设置失败(至少有一个 key 已经存在),那么返回 0 。
func (*Client) NewDistributedMutex ¶
NewDistributedMutex 生成Redis分布式互斥锁.
PS: (1) 不可重入锁; (2) 更多详见"Redis分布式锁(多语言).docx"; (3) 写入Redis中的键,默认TTL为8s.
@param name 建议以 "mutex:" 为前缀
e.g. 将TTL修改为30s NewDistributedMutex("name", redsync.WithExpiry(time.Second * 30))
func (*Client) PSubscribe ¶
PSubscribe 模式的订阅(对频道的模糊匹配,通过*).
PS: 每个模式以 * 作为匹配符,e.g.
it* 匹配所有以 it 开头的频道( it.news 、 it.blog 、 it.tweets 等等); news.* 匹配所有以 news. 开头的频道( news.it 、 news.global.today 等等),诸如此类.
命令说明: 命令订阅一个或多个符合给定模式的频道. 命令语法: PSUBSCRIBE pattern [pattern ...] 命令返回值: 接收到的信息.
@param patterns e.g."__keyevent@*__:expired"
func (*Client) Persist ¶
Persist
命令说明: 移除给定 key 的过期时间,使得 key 永不过期。 命令语法: PERSIST KEY_NAME 命令返回值: 当过期时间移除成功时,返回 1 。 如果 key 不存在或 key 没有设置过期时间,返回 0 。
func (*Client) Pipeline ¶
func (client *Client) Pipeline() redis.Pipeliner
Pipeline 管道
TODO: cluster集群模式下,使用pipeline有问题.
redis.Pipeliner实例调用Exec函数执行时,第二个返回值为error类型: (1) 假如管道中每条命令都正常执行,将返回nil; (2) 假如管道中某些命令报错了,将返回第一个报错命令的error实例.
func (*Client) Publish ¶
func (client *Client) Publish(ctx context.Context, channel string, message interface{}) (int64, error)
Publish
参考: https://www.runoob.com/redis/pub-sub-publish.html
命令说明: 命令用于将信息发送到指定的频道. 命令语法: PUBLISH channel message 命令返回值: 接收到信息的订阅者数量.
func (*Client) RandomKey ¶
RandomKey
命令说明: 从当前数据库中随机返回一个 key. 命令语法: RANDOMKEY 命令返回值: 当数据库不为空时,返回一个 key;当数据库为空时,返回 nil(windows 系统返回 null).
func (*Client) Rename ¶
Rename
命令说明: 修改 key 的名称 。 命令语法: RENAME OLD_KEY_NAME NEW_KEY_NAME 命令返回值:
改名成功时提示 OK ,失败时候返回一个错误。 当 OLD_KEY_NAME 和 NEW_KEY_NAME 相同,或者 OLD_KEY_NAME 不存在时,返回一个错误。 当 NEW_KEY_NAME 已经存在时, RENAME 命令将覆盖旧值。
func (*Client) RenameNX ¶
RenameNX
命令说明: 在新的 key 不存在时修改 key 的名称 。 命令语法: RENAMENX OLD_KEY_NAME NEW_KEY_NAME 命令返回值: 修改成功时,返回 1 。 如果 NEW_KEY_NAME 已经存在,返回 0 。
func (*Client) SAdd ¶
SAdd 将一个或多个成员元素加入到集合中,已经存在于集合的成员元素将被忽略.
PS: (1) 假如集合 key 不存在,则创建一个只包含添加的元素作成员的集合; (2) 当集合 key 不是集合类型时,返回一个错误.
@return 第1个返回值: 成功添加的成员的数量(已经在集合中的不算)
func (*Client) SRandMember ¶
SRandMember 返回集合中 1个 随机数.
func (*Client) SRandMemberN ¶
SRandMemberN 返回集合中 多个 随机数.
func (*Client) SRem ¶
SRem 移除集合中的一个或多个成员元素,不存在的成员元素会被忽略.
PS: (1) 移除后,如果集合为空,将自动删除 传参key. (2) 当 key 不是集合类型,返回一个错误.
@return 第1个返回值: 被成功移除的元素的数量,不包括被忽略的元素(集合中本来就不存在该元素)
func (*Client) Scan
deprecated
func (client *Client) Scan(ctx context.Context, cursor uint64, match string, count int64) ([]string, uint64, error)
Scan 迭代当前数据库中的数据库键.
Deprecated: 建议直接使用 ScanFully.
PS: (1) scan命令也并不是完美的,它"返回的结果有可能重复",因此需要客户端"去重"; (2) 用于替代keys,因为keys在大数据量有性能问题; (3) 返回的[]string实例的长度可能会大于传参count,比如瞎传cursor的情况,编码时得注意.
@return 返回的error == nil的情况下,第1个返回值([]string)必定不为nil
e.g. db为空(|| db中不存在符合条件的key) (context.TODO(), 0, "*", 10) => ([]string{}, 0, nil)
func (*Client) ScanFully ¶
ScanFully 对 Scan 进行了封装,用于替代 Keys 命令.
增量迭代命令的缺点:
因为在对键进行增量式迭代的过程中, 键可能会被修改, 所以增量式迭代命令只能对被返回的元素"提供有限的保证" (offer limited guarantees about the returned elements)。
PS: (1) 如果db为空,将返回: [] <nil> (2) redis cluster模式下,需要特殊处理(详见代码),否则:明明有数据的情况下,可能取不到数据,或者取到的数据不全(因为只找1个节点要).
@return 返回的error == nil的情况下,第1个返回值([]string)必定不为nil
e.g. db为空(|| db中不存在符合条件的key) (context.TODO(), "*", 10) => ([]string{}, nil)
func (*Client) ScriptLoad ¶
ScriptLoad 加载脚本,返回对应的sha
func (*Client) Set ¶
func (client *Client) Set(ctx context.Context, key string, value interface{}, expiration time.Duration) (bool, error)
Set 设置指定key的值(string类型).
命令说明: 设置给定 key 的值。如果 key 已经存储其他值, SET 就覆写旧值,且无视类型。 命令语法: SET KEY_NAME VALUE 命令返回值:
在 Redis 2.6.12 以前版本, SET 命令总是返回 OK 。 从 Redis 2.6.12 版本开始, SET 在设置操作成功完成时,才返回 OK 。
@param key 可以为"" @param value 支持的类型: string、[]byte、int、float64、bool(true: "1"; false: "0")...
不支持的类型(会返回error): map、自定义结构体...
@param expiration e.g. 120*time.Second 120s后过期
0 持久化的键(即TTL为-1),无论:键是否存在、存在的键是否有超时时间 redis.KeepTTL(即-1) 保持已经存在的TTL(需要确保Redis版本 >= 6.0,否则会返回error: ERR syntax error)
func (*Client) SetEx ¶
func (client *Client) SetEx(ctx context.Context, key string, value interface{}, expiration time.Duration) (bool, error)
SetEx
命令说明: 为指定的 key 设置值及其过期时间。如果 key 已经存在, SETEX 命令将会替换旧的值。 命令语法: SETEX KEY_NAME TIMEOUT VALUE 命令返回值: 设置成功时返回 OK 。
func (*Client) SetNX ¶
func (client *Client) SetNX(ctx context.Context, key string, value interface{}, expiration time.Duration) (bool, error)
SetNX
命令说明: 在指定的 key 不存在时,为 key 设置指定的值. 命令语法: SETNX KEY_NAME VALUE 命令返回值: 设置成功,返回 1 ;设置失败,返回 0 .
@return 第一个返回值代表: 是否设置成功
func (*Client) Subscribe ¶
Subscribe 频道的订阅(对频道的完全匹配).
命令说明: 订阅给定的一个或多个频道的信息. 命令语法: SUBSCRIBE channel [channel ...] 命令返回值: 接收到的信息.
@param channels e.g."__keyevent@0__:expired"
func (*Client) TTL ¶
TTL
命令说明: 返回 key 的剩余过期时间. 命令语法: TTL KEY_NAME 命令返回值: 当 key 不存在时,返回 -2 。 当 key 存在但没有设置剩余生存时间时,返回 -1 。 否则,以毫秒为单位,返回 key 的剩余生存时间.
e.g. key不存在
duration, err := client.TTL(context.TODO(), "a") if err != nil { panic(err) } fmt.Println(duration) // -2ns fmt.Println(duration == -2) // true
e.g.1 key为持久化键
duration, err := client.TTL(context.TODO(), "a") if err != nil { panic(err) } fmt.Println(duration) // -1ns fmt.Println(duration == -1) // true
func (*Client) TxPipeline ¶
func (client *Client) TxPipeline() redis.Pipeliner
TxPipeline 事务管道
TODO: cluster集群模式下,使用pipeline有问题.
详见"Redis.docx".
func (*Client) Type ¶
Type
命令说明: 返回 key 所储存的值的类型. 命令语法: TYPE KEY_NAME 命令返回值:
none (key不存在) string (字符串) list (列表) set (集合) zset (有序集) hash (哈希表)
e.g. 传参key不存在的情况 => ("none", nil)
func (*Client) ZAdd ¶
ZAdd
命令说明: 将一个或多个成员元素及其分数值加入到有序集当中。
(1) 如果某个成员已经是有序集的成员,那么更新这个成员的分数值,并通过重新插入这个成员元素,来保证该成员在正确的位置上。 (2) 分数值可以是 整数值 或 双精度浮点数。 (3) 如果有序集合 key 不存在,则创建一个空的有序集并执行 ZADD 操作。 (4) 当 key 存在但不是有序集类型时,返回一个错误。
命令语法: ZADD KEY_NAME SCORE1 VALUE1.. SCOREN VALUEN 命令返回值: 被成功添加的新成员的数量,不包括那些被更新的、已经存在的成员。
func (*Client) ZCard ¶
ZCard
命令说明: 计算集合中元素的数量。 命令语法: ZCARD KEY_NAME 命令返回值: 当 key 存在且是有序集类型时,返回有序集的基数。 当 key 不存在时,返回 0。
func (*Client) ZCount ¶
ZCount
命令说明: 计算有序集合中指定分数区间的成员数量。 命令语法: ZCOUNT key min max 命令返回值: 分数值在 min 和 max 之间的成员的数量。
func (*Client) ZRangeByScore ¶
func (client *Client) ZRangeByScore(ctx context.Context, key string, opt *redis.ZRangeBy) ([]string, error)
ZRangeByScore
命令说明:
返回有序集合中指定分数区间的成员列表。有序集成员按分数值递增(从小到大)次序排列。 具有相同分数值的成员按字典序来排列(该属性是有序集提供的,不需要额外的计算)。 默认情况下,区间的取值使用闭区间 (小于等于或大于等于),你也可以通过给参数前增加 ( 符号来使用可选的开区间 (小于或大于)。
命令语法: ZRANGEBYSCORE key min max [WITHSCORES] [LIMIT offset count] 命令返回值: 指定区间内,带有分数值(可选)的有序集成员的列表。
func (*Client) ZRangeByScoreWithScores ¶
func (client *Client) ZRangeByScoreWithScores(ctx context.Context, key string, opt *redis.ZRangeBy) ([]redis.Z, error)
ZRangeByScoreWithScores
详见: ZRangeByScore,命令中有 WITHSCORES.
func (*Client) ZRem ¶
ZRem
命令说明: 移除有序集中的一个或多个成员,不存在的成员将被忽略。(当 key 存在但不是有序集类型时,返回一个错误。) 命令语法: ZREM key member [member ...] 命令返回值: 被成功移除的成员的数量,不包括被忽略的成员。
func (*Client) ZRevRangeByScore ¶
func (client *Client) ZRevRangeByScore(ctx context.Context, key string, opt *redis.ZRangeBy) ([]string, error)
ZRevRangeByScore
命令说明:
返回有序集中指定分数区间内的所有的成员。有序集成员按分数值递减(从大到小)的次序排列。 具有相同分数值的成员按字典序的逆序(reverse lexicographical order )排列。 除了成员按分数值递减的次序排列这一点外, ZREVRANGEBYSCORE 命令的其他方面和 ZRANGEBYSCORE 命令一样。
命令语法: ZREVRANGEBYSCORE key max min [WITHSCORES] [LIMIT offset count] 命令返回值: 指定区间内,带有分数值(可选)的有序集成员的列表。
type ClusterConfig ¶
type ClusterConfig struct { // Addrs /* A seed list of host:port addresses of cluster nodes. 可以是: 所有的 master 的地址, 也可以是: 所有的 master + slave 的地址(推荐). */ Addrs []string `json:"addrs"` }
type Config ¶ added in v1.3.11
type Config struct { UserName string `json:"userName,optional"` Password string `json:"password,optional"` Mode Mode `json:"mode,default=0,options=0|2|3"` SingleNodeConfig *SingleNodeConfig `json:"singleNodeConfig"` MasterSlaverConfig *MasterSlaverConfig `json:"masterSlaverConfig"` SentinelConfig *SentinelConfig `json:"sentinelConfig"` ClusterConfig *ClusterConfig `json:"clusterConfig"` }
type MasterSlaverConfig ¶
type MasterSlaverConfig struct { }