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.

18 lines
225 B

package redis
import (
// "strconv"
"testing"
// "tgo/helper"
)
func Test_Exists(t *testing.T) {
ret3, err := Exists("testing23")
t.Log(ret3)
t.Log(err)
ret3, err := HExists("testing23")
t.Log(ret3)
t.Log(err)
}