Documentation ¶
Index ¶
- Constants
- type Config
- type KVTxn
- func (kv *KVTxn) Append(key []byte, value []byte) []byte
- func (kv *KVTxn) Dels(keys ...[]byte) error
- func (kv *KVTxn) Exist(Prefix []byte) bool
- func (kv *KVTxn) Get(key []byte) []byte
- func (kv *KVTxn) IncrBy(key []byte, value int64) int64
- func (kv *KVTxn) ScanValues(prefix []byte) (map[string][]byte, error)
- func (kv *KVTxn) Set(key, value []byte) error
- type KvClient
- type KvTxn
Constants ¶
View Source
const ( MemType = "mem" DiskType = "disk" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KVTxn ¶ added in v0.14.5
type KVTxn struct {
// contains filtered or unexported fields
}
func (*KVTxn) ScanValues ¶ added in v0.14.5
type KvClient ¶ added in v0.14.5
func NewBadgerClient ¶ added in v0.14.5
Click to show internal directories.
Click to hide internal directories.