Versions in this module Expand all Collapse all v1 v1.0.0 Dec 28, 2024 Changes in this version + type CacheManager struct + func NewCacheManager(name, cacheFile string, dumpInterval time.Duration, maxCacheSize int, ...) (*CacheManager, error) + func (cm *CacheManager) Delete(key string) + func (cm *CacheManager) Get(key string) (interface{}, bool) + func (cm *CacheManager) GetAll() map[string]interface{} + func (cm *CacheManager) Set(key string, value interface{}) + func (cm *CacheManager) StopDump() + type Item struct + Key string + Value interface{}