async

package
v1.14.1 Latest Latest
Warning

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

Go to latest
Published: Mar 6, 2017 License: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 4 more 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 {
	// fetch a value from cache, returns nil, false on miss
	Get(key string) (Value, bool)
	// sets a value in cache. overrites any existing value
	Set(key string, value Value)
}

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

Jump to

Keyboard shortcuts

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