redis

package
v1.12.3 Latest Latest
Warning

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

Go to latest
Published: Nov 3, 2020 License: Apache-2.0 Imports: 8 Imported by: 229

Documentation

Overview

Package redis for cache provider

depend on github.com/gomodule/redigo/redis

go install github.com/gomodule/redigo/redis

Usage: import(

_ "github.com/astaxie/beego/cache/redis"
"github.com/astaxie/beego/cache"

)

bm, err := cache.NewCache("redis", `{"conn":"127.0.0.1:11211"}`)

more docs http://beego.me/docs/module/cache.md

Index

Constants

This section is empty.

Variables

View Source
var (
	// DefaultKey the collection name of redis for cache adapter.
	DefaultKey = "beecacheRedis"
)

Functions

func NewRedisCache

func NewRedisCache() cache.Cache

NewRedisCache create new redis cache with default collection name.

Types

type Cache added in v1.6.0

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

Cache is Redis cache adapter.

func (*Cache) ClearAll added in v1.6.0

func (rc *Cache) ClearAll() error

ClearAll clean all cache in redis. delete this redis collection.

func (*Cache) Decr added in v1.6.0

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

Decr decrease counter in redis.

func (*Cache) Delete added in v1.6.0

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

Delete delete cache in redis.

func (*Cache) Get added in v1.6.0

func (rc *Cache) Get(key string) interface{}

Get cache from redis.

func (*Cache) GetMulti added in v1.6.0

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

GetMulti get cache from redis.

func (*Cache) Incr added in v1.6.0

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

Incr increase counter in redis.

func (*Cache) IsExist added in v1.6.0

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

IsExist check cache's existence in redis.

func (*Cache) Put added in v1.6.0

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

Put put cache to redis.

func (*Cache) Scan added in v1.12.2

func (rc *Cache) Scan(pattern string) (keys []string, err error)

Scan scan all keys matching the pattern. a better choice than `keys`

func (*Cache) StartAndGC added in v1.6.0

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

StartAndGC 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