async

package
v1.50.2 Latest Latest
Warning

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

Go to latest
Published: Feb 19, 2021 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Cache

type Cache interface {
	// Get fetches a value from cache, returns nil, false on miss
	Get(key string) (Value, bool)
	// Set sets a value in cache. overrites any existing value
	Set(key string, value Value)
	// Delete deletes the value from the cache
	Delete(key string)
}

func NewLRUCache

func NewLRUCache(size int, ttl time.Duration) Cache

Creates an LRUCache with maximum size, ttl for items.

type Value

type Value interface{}

Directories

Path Synopsis
Package mock_async is a generated GoMock package.
Package mock_async is a generated GoMock package.

Jump to

Keyboard shortcuts

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