package redis import ( // "strconv" "testing" // "tgo/helper" ) func Test_Exists(t *testing.T) { RedisInit("127.0.0.1:6379", "123456") ret3, err := Exists("60007_product") t.Log(ret3) t.Log(err) }