Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IDriver ¶
type IDriver interface { Close() Put(kv KVItem) (err error) Get(k []byte) (kv KVItem, err error) Delete(k []byte) (err error) Check(k []byte) (exists bool, err error) BatchPut(kvList []KVItem) (err error) BatchGet(kList [][]byte) (kvList []KVItem, err error) BatchDelete(kList [][]byte) (err error) BatchCheck(kList [][]byte) (kvList []KVItem, err error) Traversal(condition []byte) (kvList []KVItem) Stat() (state interface{}, err error) }
Click to show internal directories.
Click to hide internal directories.