cache

package
v0.0.0-...-53ca941 Latest Latest
Warning

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

Go to latest
Published: Mar 12, 2024 License: GPL-3.0 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

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

Redis cache adapter.

func RedisInit

func RedisInit(redisServer string) (*RedisCache, error)

func (*RedisCache) Add

func (rc *RedisCache) Add(key string, delta int64) error

func (*RedisCache) ClearAll

func (rc *RedisCache) ClearAll() error

clean all cache in redis. delete this redis collection.

func (*RedisCache) Decr

func (rc *RedisCache) Decr(key string) error

decrease counter in redis.

func (*RedisCache) Delete

func (rc *RedisCache) Delete(key string) error

delete cache in redis.

func (*RedisCache) Get

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

Get cache from redis.

func (*RedisCache) GetBytes

func (rc *RedisCache) GetBytes(key string) ([]byte, error)

func (*RedisCache) GetMulti

func (rc *RedisCache) GetMulti(keys []string) []interface{}

GetMulti get cache from redis.

func (*RedisCache) GetString

func (rc *RedisCache) GetString(key string) (string, error)

func (*RedisCache) Incr

func (rc *RedisCache) Incr(key string) error

increase counter in redis.

func (*RedisCache) IsExist

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

check cache's existence in redis.

func (*RedisCache) Put

func (rc *RedisCache) Put(key string, val interface{}) error

func (*RedisCache) PutWithTimeout

func (rc *RedisCache) PutWithTimeout(key string, val interface{}, timeout time.Duration) error

put cache to redis.

func (*RedisCache) RandSetMember

func (rc *RedisCache) RandSetMember(key string) (interface{}, error)

func (*RedisCache) SetSet

func (rc *RedisCache) SetSet(key string, values ...interface{}) (interface{}, error)

func (*RedisCache) StartAndGC

func (rc *RedisCache) StartAndGC(config string) error

start redis cache adapter. config is like {"key":"collection key","conn":"connection info","dbNum":"0"} the cache item in redis are stored forever, so no gc operation.

Jump to

Keyboard shortcuts

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