mirror of
https://github.com/astaxie/beego.git
synced 2025-07-15 00:51:01 +00:00
hible
cache add function // IncrBy increase counter by num. IncrBy(key string, num int) // DecrBy decrease counter by num. DecrBy(key string, num int)
This commit is contained in:
17
cache/redis/redis_test.go
vendored
17
cache/redis/redis_test.go
vendored
@ -56,6 +56,22 @@ func TestRedisCache(t *testing.T) {
|
||||
t.Error("get err")
|
||||
}
|
||||
|
||||
if err = bm.IncrBy("astaxie", 2); err != nil {
|
||||
t.Error("Incr Error", err)
|
||||
}
|
||||
|
||||
if v, _ := redis.Int(bm.Get("astaxie"), err); v != 4 {
|
||||
t.Error("get err")
|
||||
}
|
||||
|
||||
if err = bm.DecrBy("astaxie", 2); err != nil {
|
||||
t.Error("Decr Error", err)
|
||||
}
|
||||
|
||||
if v, _ := redis.Int(bm.Get("astaxie"), err); v != 2 {
|
||||
t.Error("get err")
|
||||
}
|
||||
|
||||
if err = bm.Decr("astaxie"); err != nil {
|
||||
t.Error("Decr Error", err)
|
||||
}
|
||||
@ -63,6 +79,7 @@ func TestRedisCache(t *testing.T) {
|
||||
if v, _ := redis.Int(bm.Get("astaxie"), err); v != 1 {
|
||||
t.Error("get err")
|
||||
}
|
||||
|
||||
bm.Delete("astaxie")
|
||||
if bm.IsExist("astaxie") {
|
||||
t.Error("delete err")
|
||||
|
Reference in New Issue
Block a user