Documentation ¶
Index ¶
- type MemcacheCache
- func (rc *MemcacheCache) ClearAll() error
- func (rc *MemcacheCache) Decr(key string) error
- func (rc *MemcacheCache) Delete(key string) error
- func (rc *MemcacheCache) Get(key string) interface{}
- func (rc *MemcacheCache) Incr(key string) error
- func (rc *MemcacheCache) IsExist(key string) bool
- func (rc *MemcacheCache) Put(key string, val interface{}, timeout int64) error
- func (rc *MemcacheCache) StartAndGC(config string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MemcacheCache ¶
type MemcacheCache struct {
// contains filtered or unexported fields
}
Memcache adapter.
func (*MemcacheCache) ClearAll ¶
func (rc *MemcacheCache) ClearAll() error
clear all cached in memcache.
func (*MemcacheCache) Decr ¶
func (rc *MemcacheCache) Decr(key string) error
[Not Support] decrease counter.
func (*MemcacheCache) Delete ¶
func (rc *MemcacheCache) Delete(key string) error
delete value in memcache.
func (*MemcacheCache) Get ¶
func (rc *MemcacheCache) Get(key string) interface{}
get value from memcache.
func (*MemcacheCache) Incr ¶
func (rc *MemcacheCache) Incr(key string) error
[Not Support] increase counter.
func (*MemcacheCache) IsExist ¶
func (rc *MemcacheCache) IsExist(key string) bool
check value exists in memcache.
func (*MemcacheCache) Put ¶
func (rc *MemcacheCache) Put(key string, val interface{}, timeout int64) error
put value to memcache. only support string.
func (*MemcacheCache) StartAndGC ¶
func (rc *MemcacheCache) StartAndGC(config string) error
start memcache adapter. config string is like {"conn":"connection info"}. if connecting error, return.
Click to show internal directories.
Click to hide internal directories.