Documentation
¶
Index ¶
Constants ¶
View Source
const STATE_FN = ".state-"
STATE_FN ...
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cache ¶
type Cache interface { Get(serverUUID, db string) (*schema.ImmutableState, error) Set(serverUUID, db string, state *schema.ImmutableState) error }
Cache the cache interface
func NewInMemoryCache ¶ added in v0.7.0
func NewInMemoryCache() Cache
NewInMemoryCache returns a new in-memory cache
type HistoryCache ¶
type HistoryCache interface { Cache Walk(serverUUID string, db string, f func(*schema.ImmutableState) interface{}) ([]interface{}, error) }
HistoryCache the history cache interface
func NewHistoryFileCache ¶
func NewHistoryFileCache(dir string) HistoryCache
NewHistoryFileCache returns a new history file cache
Click to show internal directories.
Click to hide internal directories.