Versions in this module Expand all Collapse all v1 v1.0.1 Feb 25, 2019 v1.0.0 Jan 30, 2019 Changes in this version + func InitConnection(uri string) redis.Conn + type RedisConnection struct + func NewMiniRedisConnection() *RedisConnection + func NewRedisConnection(uri string) *RedisConnection + func (c *RedisConnection) Del(key string) error + func (c *RedisConnection) ExecuteTx() + func (c *RedisConnection) Exists(key string) bool + func (c *RedisConnection) FlushAll() + func (c *RedisConnection) GetSortedSet(key string) (map[string]float64, error) + func (c *RedisConnection) GetValue(key string) (string, error) + func (c *RedisConnection) IncrBy(key string, value int64) (int64, error) + func (c *RedisConnection) Keys(pattern string) (res []string, err error) + func (c *RedisConnection) MGet(keys ...string) (res []string, err error) + func (c *RedisConnection) Set(key string, value string) error + func (c *RedisConnection) Sort(key, by string, alpha, desc bool, get ...string) ([][]byte, error) + func (c *RedisConnection) StartTx() + func (c *RedisConnection) ZAdd(key string, rank int64, member string) error + func (c *RedisConnection) ZCount(key string) (int64, error) + func (c *RedisConnection) ZIncrBy(key string, increment int64, member string) (int64, error) + func (c *RedisConnection) ZRangeByLex(key, min, max string) ([]string, error) + func (c *RedisConnection) ZRangeByLexInt(key, min, max string) ([]int64, error) + func (c *RedisConnection) ZRem(key string, member string) error + func (c *RedisConnection) ZRevRangeByLex(key, min, max string) ([]string, error) + func (c *RedisConnection) ZRevRangeByLexInt(key, min, max string) ([]int64, error)