cache

package
v1.1.2 Latest Latest
Warning

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

Go to latest
Published: Jun 24, 2023 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type RedisCache added in v1.0.3

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

RedisCache 封装操作客户端

func Init

func Init(ctx context.Context, redisOptions RedisOptions) *RedisCache

Init 初始化缓存配置

func (*RedisCache) Get added in v1.0.3

func (rc *RedisCache) Get(key string, value interface{}) (err error)

func (*RedisCache) GetRedisClient added in v1.0.3

func (rc *RedisCache) GetRedisClient() *cache.Cache

func (*RedisCache) IsExists added in v1.0.3

func (rc *RedisCache) IsExists(key string) bool

func (*RedisCache) Set added in v1.0.3

func (rc *RedisCache) Set(Key string, value interface{}) (err error)

func (*RedisCache) SetTtl added in v1.0.3

func (rc *RedisCache) SetTtl(key string, value interface{}, ttl time.Duration) (err error)

SetTtl 设置key过期时间

type RedisOptions

type RedisOptions redis.Options

type Rediser

type Rediser interface {
	Get(key string, value interface{}) (err error)
	GetRedisClient() *cache.Cache
	IsExists(key string) bool
	Set(Key string, value interface{}) (err error)
	SetTtl(key string, value interface{}, ttl time.Duration) (err error)
}

Jump to

Keyboard shortcuts

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