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.

17 lines
209 B

  1. package redis
  2. import (
  3. // "strconv"
  4. "testing"
  5. // "tgo/helper"
  6. )
  7. func Test_Exists(t *testing.T) {
  8. RedisInit("127.0.0.1:6379", "123456")
  9. ret3, err := Exists("60007_product")
  10. t.Log(ret3)
  11. t.Log(err)
  12. }