Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store interface {
Get(key string, v interface{}) error
GetRaw(key string) (string, error)
Set(key string, v interface{}, force ...bool) error
SetWithTTL(key string, v interface{}, ttlSec int, force ...bool) error
Watch(key string) chan string
KeysByPrefix(prefix string) ([]string, error)
Remove(key string) error
TryRemoveDir(key string)
RemoveDir(key string) error
}
Click to show internal directories.
Click to hide internal directories.