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