Documentation ¶
Index ¶
- func Close()
- func Del(args [][]byte) (interface{}, error)
- func Exists(args [][]byte) (interface{}, error)
- func Expire(args [][]byte) (interface{}, error)
- func Get(args [][]byte) (interface{}, error)
- func Hclear(args [][]byte) (r interface{}, err error)
- func Hdel(args [][]byte) (r interface{}, err error)
- func Hexists(args [][]byte) (r interface{}, err error)
- func Hget(args [][]byte) (r interface{}, err error)
- func Hgetall(args [][]byte) (r []string, err error)
- func Hincr(args [][]byte) (r interface{}, err error)
- func Hincrby(args [][]byte) (r interface{}, err error)
- func Hkeys(args [][]byte) (r []string, err error)
- func Hlist(args [][]byte) (r []string, err error)
- func Hrkeys(args [][]byte) (r []string, err error)
- func Hrlist(args [][]byte) (r []string, err error)
- func Hrscan(args [][]byte) (r []string, err error)
- func Hscan(args [][]byte) (r []string, err error)
- func Hset(args [][]byte) (r interface{}, err error)
- func Hsize(args [][]byte) (r interface{}, err error)
- func Incr(args [][]byte) (interface{}, error)
- func KeyRange() string
- func Keys(args [][]byte) ([]string, error)
- func MultiDel(args [][]byte) (interface{}, error)
- func MultiGet(args [][]byte) (r []string, err error)
- func MultiHdel(args [][]byte) (r interface{}, err error)
- func MultiHget(args [][]byte) (r []string, err error)
- func MultiHset(args [][]byte) (r interface{}, err error)
- func MultiSet(args [][]byte) (interface{}, error)
- func Open(o *Options)
- func Rkeys(args [][]byte) ([]string, error)
- func Rscan(args [][]byte) ([]string, error)
- func Scan(args [][]byte) ([]string, error)
- func Set(args [][]byte) (interface{}, error)
- func Setx(args [][]byte) (interface{}, error)
- func TTL(args [][]byte) (interface{}, error)
- type Options
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Hincrby ¶
Hincrby will incr number a hashmap value by the key. Args: name string, key string, value int
func Hkeys ¶
Hkeys will list the hashmap keys in the range. Args: name string, start string, end string, limit int
func Hrkeys ¶
Hrkeys will reverse list the hashmap keys in the range. Args: name string, start string, end string, limit int
func Hrlist ¶
Hrlist will reverse list all hashmap in the range. Args: start string, end string, limit int
func Hrscan ¶
Hrscan will reverse list keys/value of the hashmap in the range. Args: name string, start string, end string, limit int
func Hscan ¶
Hscan will list keys/value of the hashmap in the range. Args: name string, start string, end string, limit int
func Keys ¶
Keys will list keys in the range. Args: start_key string, end_key string, limit_number int
func Rkeys ¶
Rkeys will reverse list keys in the range. Args: start_key string, end_key string, limit_number int
func Rscan ¶
Rscan will reverse list KV pair that keys in the range. Args: start_key string, end_key string, limit_number int
func Scan ¶
Scan will list KV pair that keys in the range. Args: start_key string, end_key string, limit_number int