mirror of
https://github.com/astaxie/beego.git
synced 2025-07-17 18:52:16 +00:00
This fixes issue #2467 with ssdb cache IsExist
This commit is contained in:
2
cache/ssdb/ssdb.go
vendored
2
cache/ssdb/ssdb.go
vendored
@@ -152,7 +152,7 @@ func (rc *Cache) IsExist(key string) bool {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if resp[1] == "1" {
|
if len(resp) == 2 && resp[1] == "1" {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
|
Reference in New Issue
Block a user