redis操作
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
179 B

2 years ago
2 years ago
  1. package redis
  2. import (
  3. "testing"
  4. )
  5. func Test_Exists(t *testing.T) {
  6. RedisInit("127.0.0.1:6379", "123456")
  7. ret3, err := Exists("60007_product2")
  8. t.Log(ret3)
  9. t.Log(err)
  10. }