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 ¶
GetWithExpire element in Cache with Expire Time
type EvictCallback ¶
type EvictCallback = func(key interface{}, value interface{})
EvictCallback is used to get a callback when a cache entry is evicted
type LruCache ¶
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 (*LruCache) Exist ¶
Exist returns if key exist in cache but not put item to the head of linked list
Click to show internal directories.
Click to hide internal directories.