Documentation ¶
Index ¶
- func AsClient(client interface{}) *redis.Client
- func New() cache.Cache
- type RedisCacher
- func (c *RedisCacher) Client() interface{}
- func (c *RedisCacher) Close() error
- func (c *RedisCacher) Codec() encoding.Codec
- func (c *RedisCacher) Decr(key string) error
- func (c *RedisCacher) Delete(key string) error
- func (c *RedisCacher) Flush() error
- func (c *RedisCacher) Get(key string, value interface{}) error
- func (c *RedisCacher) Incr(key string) error
- func (c *RedisCacher) IsExist(key string) bool
- func (c *RedisCacher) Options() *redis.Options
- func (c *RedisCacher) Put(key string, val interface{}, expire int64) error
- func (c *RedisCacher) SetCodec(codec encoding.Codec)
- func (c *RedisCacher) StartAndGC(opts cache.Options) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type RedisCacher ¶
RedisCacher represents a redis cache adapter implementation.
func (*RedisCacher) Client ¶
func (c *RedisCacher) Client() interface{}
func (*RedisCacher) Close ¶
func (c *RedisCacher) Close() error
func (*RedisCacher) Codec ¶
func (c *RedisCacher) Codec() encoding.Codec
func (*RedisCacher) Decr ¶
func (c *RedisCacher) Decr(key string) error
Decr decreases cached int-type value by given key as a counter.
func (*RedisCacher) Delete ¶
func (c *RedisCacher) Delete(key string) error
Delete deletes cached value by given key.
func (*RedisCacher) Get ¶
func (c *RedisCacher) Get(key string, value interface{}) error
Get gets cached value by given key.
func (*RedisCacher) Incr ¶
func (c *RedisCacher) Incr(key string) error
Incr increases cached int-type value by given key as a counter.
func (*RedisCacher) IsExist ¶
func (c *RedisCacher) IsExist(key string) bool
IsExist returns true if cached value exists.
func (*RedisCacher) Options ¶
func (c *RedisCacher) Options() *redis.Options
func (*RedisCacher) Put ¶
func (c *RedisCacher) Put(key string, val interface{}, expire int64) error
Put puts value into cache with key and expire time. If expired is 0, it lives forever.
func (*RedisCacher) SetCodec ¶
func (c *RedisCacher) SetCodec(codec encoding.Codec)
func (*RedisCacher) StartAndGC ¶
func (c *RedisCacher) StartAndGC(opts cache.Options) error
StartAndGC starts GC routine based on config string settings. AdapterConfig: network=tcp,addr=:6379,password=123456,db=0,pool_size=100,idle_timeout=180,hset_name=Cache,prefix=cache:
Click to show internal directories.
Click to hide internal directories.