Documentation ¶
Overview ¶
package memcahe for cache provider
depend on github.com/bradfitz/gomemcache/memcache
go install github.com/bradfitz/gomemcache/memcache
Usage: import(
_ "github.com/astaxie/beego/cache/memcache" "github.com/astaxie/beego/cache"
)
bm, err := cache.NewCache("memcache", `{"conn":"127.0.0.1:11211"}`) more docs http://beego.me/docs/module/cache.md
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) 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) 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.