func TestRedisCache(t *testing.T) { bm, err := cache.NewCache("redis", `{"conn": "127.0.0.1:6379"}`) if err != nil { t.Error("init err") } if err = bm.Put("astaxie", 1, 10); err != nil { t.Error("set Error", err) } if !bm.IsExist("astaxie") { t.Error("check err") } time.Sleep(10 * time.Second) if bm.IsExist("astaxie") { t.Error("check err") } if err = bm.Put("astaxie", 1, 10); err != nil { t.Error("set Error", err) } if v, _ := redis.Int(bm.Get("astaxie"), err); v != 1 { t.Error("get err") } if err = bm.Incr("astaxie"); err != nil { t.Error("Incr 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) } 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") } //test string if err = bm.Put("astaxie", "author", 10); err != nil { t.Error("set Error", err) } if !bm.IsExist("astaxie") { t.Error("check err") } if v, _ := redis.String(bm.Get("astaxie"), err); v != "author" { t.Error("get err") } //test GetMulti if err = bm.Put("astaxie1", "author1", 10); err != nil { t.Error("set Error", err) } if !bm.IsExist("astaxie1") { t.Error("check err") } vv := bm.GetMulti([]string{"astaxie", "astaxie1"}) if len(vv) != 2 { t.Error("GetMulti ERROR") } if v, _ := redis.String(vv[0], nil); v != "author" { t.Error("GetMulti ERROR") } if v, _ := redis.String(vv[1], nil); v != "author1" { t.Error("GetMulti ERROR") } // test clear all if err = bm.ClearAll(); err != nil { t.Error("clear all err") } }
func TestRedisCache(t *testing.T) { bm, err := cache.NewCache("memcache", `{"conn": "127.0.0.1:11211"}`) if err != nil { t.Error("init err") } if err = bm.Put("astaxie", "1", 10); err != nil { t.Error("set Error", err) } if !bm.IsExist("astaxie") { t.Error("check err") } time.Sleep(10 * time.Second) if bm.IsExist("astaxie") { t.Error("check err") } if err = bm.Put("astaxie", "1", 10); err != nil { t.Error("set Error", err) } if v, err := strconv.Atoi(bm.Get("astaxie").(string)); err != nil || v != 1 { t.Error("get err") } if err = bm.Incr("astaxie"); err != nil { t.Error("Incr Error", err) } if v, err := strconv.Atoi(bm.Get("astaxie").(string)); err != nil || v != 2 { t.Error("get err") } if err = bm.Decr("astaxie"); err != nil { t.Error("Decr Error", err) } if v, err := strconv.Atoi(bm.Get("astaxie").(string)); err != nil || v != 1 { t.Error("get err") } bm.Delete("astaxie") if bm.IsExist("astaxie") { t.Error("delete err") } //test string if err = bm.Put("astaxie", "author", 10); err != nil { t.Error("set Error", err) } if !bm.IsExist("astaxie") { t.Error("check err") } if v := bm.Get("astaxie").(string); v != "author" { t.Error("get err") } //test GetMulti if err = bm.Put("astaxie1", "author1", 10); err != nil { t.Error("set Error", err) } if !bm.IsExist("astaxie1") { t.Error("check err") } vv := bm.GetMulti([]string{"astaxie", "astaxie1"}) if len(vv) != 2 { t.Error("GetMulti ERROR") } if vv[0].(string) != "author" { t.Error("GetMulti ERROR") } if vv[1].(string) != "author1" { t.Error("GetMulti ERROR") } // test clear all if err = bm.ClearAll(); err != nil { t.Error("clear all err") } }