Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bucket ¶
type Bucket interface { Get(k []byte) []byte Set(k, v []byte) error Del(k []byte) error Prefix(k []byte) [][]byte Suffix(k []byte) [][]byte Scan() [][]byte Range(start, limit []byte) [][]byte SetTTL(k, v []byte, expire time.Duration) error Close() error // BatchSet write & flush BatchSet(kvs map[string][]byte) error Name() string }
Click to show internal directories.
Click to hide internal directories.