Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cache ¶
type Cache struct {
// contains filtered or unexported fields
}
Cache store element with a expired time
func (Cache) Get ¶
func (c Cache) Get(key interface{}) interface{}
Get element in Cache, and drop when it expired
func (Cache) GetWithExpire ¶ added in v0.11.0
GetWithExpire element in Cache with Expire Time
type EvictCallback ¶ added in v0.17.0
type EvictCallback func(key interface{}, value interface{})
EvictCallback is used to get a callback when a cache entry is evicted
type LruCache ¶ added in v0.16.0
type LruCache struct {
// contains filtered or unexported fields
}
LruCache is a thread-safe, in-memory lru-cache that evicts the least recently used entries from memory when (if set) the entries are older than maxAge (in seconds). Use the New constructor to create one.
func NewLRUCache ¶ added in v0.16.0
NewLRUCache creates an LruCache
func (*LruCache) Exist ¶ added in v0.16.0
Exist returns if key exist in cache but not put item to the head of linked list
type Option ¶ added in v0.16.0
type Option func(*LruCache)
Option is part of Functional Options Pattern
func WithEvict ¶ added in v0.17.0
func WithEvict(cb EvictCallback) Option
WithEvict set the evict callback
func WithUpdateAgeOnGet ¶ added in v0.16.0
func WithUpdateAgeOnGet() Option
WithUpdateAgeOnGet update expires when Get element