Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type KVStore ¶
type KVStore interface { Get(key string) (value string, existed bool) Put(key string, value string) (oldValue string, existed bool) Incr(key string, delta int) (oldValue string, existed bool, err error) Del(key string) (oldValue string, existed bool) }
KVStore is the embeded KV-store.
Click to show internal directories.
Click to hide internal directories.