redis

package
v1.4.3 Latest Latest
Warning

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

Go to latest
Published: Feb 27, 2015 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

package redis for cache provider

depend on github.com/garyburd/redigo/redis

go install github.com/garyburd/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 (
	// 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's existence in redis.

func (*RedisCache) Put

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

put cache to redis.

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