cache

package
v1.1.3 Latest Latest
Warning

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

Go to latest
Published: Oct 5, 2022 License: GPL-3.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Delete

func Delete(key string) error

Delete 删除缓存值

func Deletes

func Deletes(keys []string, prefix string) error

Deletes 删除值

func Get

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

Get 获取缓存值

func GetSettings

func GetSettings(keys []string, prefix string) (map[string]string, []string)

GetSettings 根据名称批量获取设置项缓存

func Init

func Init()

Init 初始化缓存

func Set

func Set(key string, value interface{}, ttl int) error

Set 设置缓存值

func SetSettings

func SetSettings(values map[string]string, prefix string) error

SetSettings 批量设置站点设置缓存

Types

type Driver

type Driver interface {
	// Set 设置值,ttl为过期时间,单位为秒
	Set(key string, value interface{}, ttl int) error

	// Get 取值,并返回是否成功
	Get(key string) (interface{}, bool)

	// Gets 批量取值,返回成功取值的map即不存在的值
	Gets(keys []string, prefix string) (map[string]interface{}, []string)

	// Sets 批量设置值,所有的key都会加上prefix前缀
	Sets(values map[string]interface{}, prefix string) error

	// Delete 删除值
	Delete(key string) error

	// Deletes 批量删除值,所有的key都会加上prefix前缀
	Deletes(keys []string, prefix string) error
}

Driver 键值缓存存储容器

type MemoryStore

type MemoryStore struct {
	Store *sync.Map
}

MemoryStore 内存存储驱动

func NewMemoStore

func NewMemoStore() *MemoryStore

NewMemoStore 新建内存存储

func (*MemoryStore) Delete

func (store *MemoryStore) Delete(key string) error

Delete 删除值

func (*MemoryStore) Deletes

func (store *MemoryStore) Deletes(keys []string, prefix string) error

Deletes 批量删除值

func (*MemoryStore) GarbageCollect

func (store *MemoryStore) GarbageCollect()

GarbageCollect 回收已过期的缓存

func (*MemoryStore) Get

func (store *MemoryStore) Get(key string) (interface{}, bool)

Get 取值

func (*MemoryStore) Gets

func (store *MemoryStore) Gets(keys []string, prefix string) (map[string]interface{}, []string)

Gets 批量取值

func (*MemoryStore) Set

func (store *MemoryStore) Set(key string, value interface{}, ttl int) error

Set 存储值

func (*MemoryStore) Sets

func (store *MemoryStore) Sets(values map[string]interface{}, prefix string) error

Sets 批量设置值

type RedisStore

type RedisStore struct {
	// contains filtered or unexported fields
}

RedisStore redis存储驱动

func NewRedisStore

func NewRedisStore(size int, network, address, password string, database int) *RedisStore

NewRedisStore 创建新的redis存储

func (*RedisStore) Delete

func (store *RedisStore) Delete(key string) error

Delete 删除给定的键

func (*RedisStore) DeleteAll

func (store *RedisStore) DeleteAll() error

DeleteAll 批量所有键

func (*RedisStore) Deletes

func (store *RedisStore) Deletes(keys []string, prefix string) error

Deletes 批量删除给定的键

func (*RedisStore) Get

func (store *RedisStore) Get(key string) (interface{}, bool)

Get 取值

func (*RedisStore) Gets

func (store *RedisStore) Gets(keys []string, prefix string) (map[string]interface{}, []string)

Gets 批量取值

func (*RedisStore) Set

func (store *RedisStore) Set(key string, value interface{}, ttl int) error

Set 存储值

func (*RedisStore) Sets

func (store *RedisStore) Sets(values map[string]interface{}, prefix string) error

Sets 批量设置值

Jump to

Keyboard shortcuts

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