cache

package
v0.8.1 Latest Latest
Warning

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

Go to latest
Published: Apr 25, 2021 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 CacheMock added in v0.5.0

type CacheMock struct {
	GetFunc func(key string) interface{}

	LookupFunc func(key string) (interface{}, bool)

	SetFunc func(key string, value interface{}) bool

	SetNXFunc func(key string, value interface{}, expire time.Duration) bool
}

func (*CacheMock) Get added in v0.5.0

func (mockRecv *CacheMock) Get(key string) interface{}

func (*CacheMock) Lookup added in v0.5.0

func (mockRecv *CacheMock) Lookup(key string) (interface{}, bool)

func (*CacheMock) Set added in v0.5.0

func (mockRecv *CacheMock) Set(key string, value interface{}) bool

func (*CacheMock) SetNX added in v0.5.0

func (mockRecv *CacheMock) SetNX(key string, value interface{}, expire time.Duration) bool

type CacheMockMock added in v0.5.0

type CacheMockMock struct {
	GetFunc func(key string) interface{}

	LookupFunc func(key string) (interface{}, bool)

	SetFunc func(key string, value interface{}) bool

	SetNXFunc func(key string, value interface{}, expire time.Duration) bool
}

func (*CacheMockMock) Get added in v0.5.0

func (mockRecv *CacheMockMock) Get(key string) interface{}

func (*CacheMockMock) Lookup added in v0.5.0

func (mockRecv *CacheMockMock) Lookup(key string) (interface{}, bool)

func (*CacheMockMock) Set added in v0.5.0

func (mockRecv *CacheMockMock) Set(key string, value interface{}) bool

func (*CacheMockMock) SetNX added in v0.5.0

func (mockRecv *CacheMockMock) SetNX(key string, value interface{}, expire time.Duration) bool

type ICacheMock added in v0.5.0

type ICacheMock 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
}

type ImemImpl added in v0.5.0

type ImemImpl 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
}

type ImemImplMock added in v0.5.0

type ImemImplMock 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
}

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