1
0
镜像自地址 https://github.com/astaxie/beego.git 已同步 2025-07-17 18:52:16 +00:00

fix new version for memcahe client

这个提交包含在:
astaxie
2013-08-06 16:04:35 +08:00
父节点 6f2cd326bf
当前提交 64ef8ad62b

4
cache/memcache.go vendored
查看文件

@@ -19,7 +19,7 @@ func (rc *MemcacheCache) Get(key string) interface{} {
if rc.c == nil {
rc.c = rc.connectInit()
}
v, _, err := rc.c.Get(key)
v, err := rc.c.Get(key)
if err != nil {
return nil
}
@@ -63,7 +63,7 @@ func (rc *MemcacheCache) IsExist(key string) bool {
if rc.c == nil {
rc.c = rc.connectInit()
}
v, _, err := rc.c.Get(key)
v, err := rc.c.Get(key)
if err != nil {
return false
}