cache

package
v0.4.7 Latest Latest
Warning

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

Go to latest
Published: Jun 7, 2018 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrCacheMiss = errors.New("cache: key is missing")

Functions

This section is empty.

Types

type Cache

type Cache interface {
	Set(item *Item) error
	Get(key string, obj interface{}) error
}

func NewInMemoryCache

func NewInMemoryCache(expiration time.Duration) Cache

func NewRedisCache

func NewRedisCache(client *redis.Client, expiration time.Duration) Cache

type Item

type Item struct {
	Key    string
	Object interface{}
	// Expiration is the cache expiration time.
	Expiration time.Duration
}

Jump to

Keyboard shortcuts

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