字符串
RDb()
可以通过 tg.RDb()
去指定数据源,不传默认会读取 config/config.yaml
里的Redis配置
- @param
tg.RSource
数据源tg.RSource{}
- -------@param
Addr
地址 - -------@param
Password
密码 - -------@param
DB
索引 - -------@param
PoolSize
最大连接池
Get()
获取存储在键上的字符串值
Get(key string) *redis.StringCmd
Get(key string) *redis.StringCmd
Set()
设置键的字符串值
Set(key string, value interface{}, expiration time.Duration) *redis.StatusCmd
Set(key string, value interface{}, expiration time.Duration) *redis.StatusCmd
Incr()
将键的整数值增加一
Incr(key string) *redis.IntCmd
Incr(key string) *redis.IntCmd
Decr()
将键的整数值减少一
Decr(key string) *redis.IntCmd
Decr(key string) *redis.IntCmd
MGet()
获取多个键的值
MGet(keys ...string) *redis.SliceCmd
MGet(keys ...string) *redis.SliceCmd
MSet()
同时设置多个键的值
MSet(values ...interface{}) *redis.StatusCmd
MSet(values ...interface{}) *redis.StatusCmd
Del()
删除一个或多个键
Del(keys ...string) *redis.IntCmd
Del(keys ...string) *redis.IntCmd