Documentation ¶
Index ¶
- Variables
- type RedisCache
- func (rc *RedisCache) ClearAll() error
- func (rc *RedisCache) Decr(key string) error
- func (rc *RedisCache) Delete(key string) error
- func (rc *RedisCache) Get(key string) interface{}
- func (rc *RedisCache) Incr(key string) error
- func (rc *RedisCache) IsExist(key string) bool
- func (rc *RedisCache) Put(key string, val interface{}, timeout int64) error
- func (rc *RedisCache) StartAndGC(config string) error
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) 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.
Click to show internal directories.
Click to hide internal directories.