redis rpc服务, 提供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
259 B

package redisrpc
import (
// "strconv"
"testing"
// "tgo/helper"
)
func Test_LLpush(t *testing.T) {
// val := map[string]interface{}{"id": "123", "name": "这是一个测试", "dis": "xxx"}
reply, err := LLen("testing")
t.Log(reply)
t.Log(err)
}