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
194 B

package redis
import (
"testing"
)
func Test_SetAdd(t *testing.T) {
reply, err := Set(123, "不知道433ee4")
t.Log(reply)
t.Log(err)
ret, err := Get("123")
t.Log(ret)
t.Log(err)
}