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.

19 lines
214 B

  1. package redis
  2. import (
  3. // "strconv"
  4. "testing"
  5. // "tgo/helper"
  6. )
  7. func Test_HVals(t *testing.T) {
  8. ret3, err := HVals("sites")
  9. t.Log(ret3)
  10. t.Log(err)
  11. ret4, err := HKeys("sites")
  12. t.Log(ret4)
  13. t.Log(err)
  14. }