cache

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: Sep 25, 2020 License: Apache-2.0 Imports: 1 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 {
	Add(key string, valuer Valuer)
	Get(key string) (valuer Valuer, ok bool)
	Remove(key string)
	Clear()
	Len() int
}

type Valuer

type Valuer interface {
	fmt.Stringer
	Len() int
	Bytes() []byte
	Expire() int64
	SetExpire(timestamp int64)
	GroupName() string
}

使用Len值计算需要多少字节

Jump to

Keyboard shortcuts

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