cache

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Aug 9, 2020 License: Apache-2.0 Imports: 4 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(key string) interface{}
	Lookup(key string) (interface{}, bool)
	Set(key string, value interface{}) bool
	SetNX(key string, value interface{}, expire time.Duration) bool
}

Cache 缓存

func New

func New(opt Option) Cache

New 新建

type Option

type Option struct {
	Type Type // 类型:1 内存;2 redis;
}

Option 选项

type Type

type Type int

Type 缓存类型

const (
	TypeMem Type = iota + 1
	TypeRedis
)

缓存类型枚举

Jump to

Keyboard shortcuts

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