cache

package
v3.0.0-beta Latest Latest
Warning

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

Go to latest
Published: Aug 12, 2020 License: Apache-2.0 Imports: 0 Imported by: 0

Documentation

Overview

Package cache is a caching interface

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Cache

type Cache interface {
	// Initialise options
	Init(...Option) error
	// Get a value
	Get(key string) (interface{}, error)
	// Set a value
	Set(key string, val interface{}) error
	// Delete a value
	Delete(key string) error
	// Name of the implementation
	String() string
}

Cache is an interface for caching

type Option

type Option func(o *Options)

func Nodes

func Nodes(v ...string) Option

Nodes sets the nodes for the cache

type Options

type Options struct {
	Nodes []string
}

Directories

Path Synopsis
Package memcache is a memcache implementation of the Cache
Package memcache is a memcache implementation of the Cache
Package memory is an in memory cache
Package memory is an in memory cache

Jump to

Keyboard shortcuts

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