cache

package
v1.18.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 17, 2023 License: GPL-3.0 Imports: 3 Imported by: 13

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type EvictCallback added in v0.17.0

type EvictCallback = func(key any, value any)

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 New

func New(options ...Option) *LruCache

New creates an LruCache

func (*LruCache) CloneTo added in v1.2.0

func (c *LruCache) CloneTo(n *LruCache)

CloneTo clone and overwrite elements to another LruCache

func (*LruCache) Delete added in v0.16.0

func (c *LruCache) Delete(key any)

Delete removes the value associated with a key.

func (*LruCache) Exist added in v0.16.0

func (c *LruCache) Exist(key any) bool

Exist returns if key exist in cache but not put item to the head of linked list

func (*LruCache) Get added in v0.16.0

func (c *LruCache) Get(key any) (any, bool)

Get returns the any representation of a cached response and a bool set to true if the key was found.

func (*LruCache) GetWithExpire added in v0.20.0

func (c *LruCache) GetWithExpire(key any) (any, time.Time, bool)

GetWithExpire returns the any representation of a cached response, a time.Time Give expected expires, and a bool set to true if the key was found. This method will NOT check the maxAge of element and will NOT update the expires.

func (*LruCache) Set added in v0.16.0

func (c *LruCache) Set(key any, value any)

Set stores the any representation of a response for a given key.

func (*LruCache) SetWithExpire added in v0.20.0

func (c *LruCache) SetWithExpire(key any, value any, expires time.Time)

SetWithExpire stores the any representation of a response for a given key and given expires. The expires time will round to second.

type Option added in v0.16.0

type Option func(*LruCache)

Option is part of Functional Options Pattern

func WithAge added in v0.16.0

func WithAge(maxAge int64) Option

WithAge defined element max age (second)

func WithEvict added in v0.17.0

func WithEvict(cb EvictCallback) Option

WithEvict set the evict callback

func WithSize added in v0.16.0

func WithSize(maxSize int) Option

WithSize defined max length of LruCache

func WithStale added in v0.20.0

func WithStale(stale bool) Option

WithStale decide whether Stale return is enabled. If this feature is enabled, element will not get Evicted according to `WithAge`.

func WithUpdateAgeOnGet added in v0.16.0

func WithUpdateAgeOnGet() Option

WithUpdateAgeOnGet update expires when Get element

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL