Documentation
¶
Index ¶
- Variables
- type Store
- func (d *Store) Close()
- func (d *Store) HClear(name interface{}) (int, error)
- func (d *Store) HDel(name, key interface{}) error
- func (d *Store) HExists(name, key interface{}) (i int, err error)
- func (d *Store) HGet(name, key interface{}) (value interface{}, err error)
- func (d *Store) HGetALL(name interface{}) (g.SliceAny, error)
- func (d *Store) HGetTTL(name, key interface{}) (ttl uint64, err error)
- func (d *Store) HGetTo(name, key, value interface{}) (err error)
- func (d *Store) HIncr(name, key interface{}, num int) (value uint64, err error)
- func (d *Store) HKeys(name, prefix interface{}) (keys g.SliceStr, err error)
- func (d *Store) HLen(name, prefix interface{}) (int, error)
- func (d *Store) HMDel(name interface{}, keys []string) error
- func (d *Store) HMGet(name interface{}, keys []string) (g.SliceAny, error)
- func (d *Store) HMSet(name interface{}, keys []string, values []interface{}) error
- func (d *Store) HScan(name, prefix interface{}, limit int) (items g.MapStrAny, err error)
- func (d *Store) HSet(name, key, value interface{}) error
- func (d *Store) HSetTTL(name, key, value interface{}, ttl uint64) error
- func (d *Store) HValues(name, prefix interface{}, limit int) (values g.SliceAny, err error)
- func (d *Store) HValuesTo(name, prefix interface{}, limit int, itemsPointer interface{}) error
- func (d *Store) RunValueLogGC(discardRatio float64) error
- func (d *Store) Size() (lsm, vlog int64)
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrKeyNotFound = "Key not found" ErrNoRewrite = "Value log GC attempt didn't result in any cleanup" //GC )
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.