cache

package
v1.3.0 Latest Latest
Warning

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

Go to latest
Published: Jun 19, 2014 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

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

Functions

This section is empty.

Types

type RedisCache

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

Redis cache adapter.

func NewRedisCache

func NewRedisCache() *RedisCache

create new redis cache with default collection name.

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{}

Get cache from redis.

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 exist in redis.

func (*RedisCache) Put

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

put cache to redis. timeout is ignored.

func (*RedisCache) StartAndGC

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

start redis cache adapter. config is like {"key":"collection key","conn":"connection info"} 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