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.

13 lines
164 B

  1. package redis
  2. import (
  3. "testing"
  4. )
  5. func Test_Incr(t *testing.T) {
  6. reply, err := Incr("xxx")
  7. t.Log(reply, err)
  8. reply, err := Decr("xxx")
  9. t.Log(reply, err)
  10. }