package redisrpc
|
|
|
|
import (
|
|
"testing"
|
|
// "time"
|
|
)
|
|
|
|
func Test_Get(t *testing.T) {
|
|
|
|
reply, err := Get("siteListCache")
|
|
|
|
t.Log(reply)
|
|
t.Log(err)
|
|
}
|
|
|
|
// func Test_Set(t *testing.T) {
|
|
|
|
// c, err := Set("test", 1111, 7200)
|
|
// t.Log(c)
|
|
// t.Log(err)
|
|
|
|
// }
|