本文整理汇总了Golang中github.com/zond/god/client.Conn类的典型用法代码示例。如果您正苦于以下问题:Golang Conn类的具体用法?Golang Conn怎么用?Golang Conn使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Conn类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: dumpSetOp
func dumpSetOp(conn *client.Conn, args []string) {
op, err := setop.NewSetOpParser(args[2]).Parse()
if err != nil {
fmt.Println(err)
} else {
for _, res := range conn.SetExpression(setop.SetExpression{Dest: []byte(args[1]), Op: op}) {
printSetOpRes(res)
}
}
}
示例2: describeTree
func describeTree(conn *client.Conn, args []string) {
if bytes, err := hex.DecodeString(args[1]); err != nil {
fmt.Println(err)
} else {
if result, err := conn.DescribeTree(bytes); err != nil {
fmt.Println(err)
} else {
fmt.Println(result)
}
}
}
示例3: getActives
func getActives(w http.ResponseWriter, r *http.Request, c *client.Conn) {
var result []common.Message
for _, item := range c.Slice(activeObjectsKey, nil, nil, true, true) {
result = append(result, common.Message{
Object: string(item.Key),
})
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
if err := json.NewEncoder(w).Encode(result); err != nil {
panic(err)
}
}
示例4: getViews
func getViews(w http.ResponseWriter, r *http.Request, c *client.Conn) {
uid := mux.Vars(r)["user_id"]
vKey := uViewsKey(uid)
var result []common.Message
for _, item := range c.Slice(vKey, nil, nil, true, true) {
result = append(result, common.Message{
Type: common.View,
User: uid,
Object: string(item.Key),
})
}
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
if err := json.NewEncoder(w).Encode(result); err != nil {
panic(err)
}
}
示例5: testDump
func testDump(t *testing.T, c *client.Conn) {
ch, wa := c.Dump()
ch <- [2][]byte{[]byte("testDumpk1"), []byte("testDumpv1")}
ch <- [2][]byte{[]byte("testDumpk2"), []byte("testDumpv2")}
close(ch)
wa.Wait()
if val, ex := c.Get([]byte("testDumpk1")); !ex || bytes.Compare(val, []byte("testDumpv1")) != 0 {
t.Errorf("wrong value")
}
if val, ex := c.Get([]byte("testDumpk2")); !ex || bytes.Compare(val, []byte("testDumpv2")) != 0 {
t.Errorf("wrong value")
}
}
示例6: describeAllTrees
func describeAllTrees(conn *client.Conn, args []string) {
fmt.Print(conn.DescribeAllTrees())
}
示例7: subConfigure
func subConfigure(conn *client.Conn, args []string) {
conn.SubAddConfiguration([]byte(args[1]), args[2], args[3])
}
示例8: del
func del(conn *client.Conn, args []string) {
conn.Del([]byte(args[1]))
}
示例9: slice
func slice(conn *client.Conn, args []string) {
for i, item := range conn.Slice([]byte(args[1]), []byte(args[2]), []byte(args[3]), true, false) {
fmt.Printf("%v: %v => %v\n", i, string(item.Key), decode(item.Value))
}
}
示例10: put
func put(conn *client.Conn, args []string) {
conn.Put([]byte(args[1]), encode(args[2]))
}
示例11: subClear
func subClear(conn *client.Conn, args []string) {
conn.SubClear([]byte(args[1]))
}
示例12: nextIndex
func nextIndex(conn *client.Conn, args []string) {
if key, value, index, existed := conn.NextIndex([]byte(args[1]), *(mustAtoi(args[2]))); existed {
fmt.Printf("%v: %v => %v\n", index, string(key), decode(value))
}
}
示例13: dump
func dump(conn *client.Conn, args []string) {
dump, wait := conn.Dump()
linedump(dump, wait)
}
示例14: show
func show(conn *client.Conn) {
fmt.Println(conn.Describe())
}
示例15: count
func count(conn *client.Conn, args []string) {
fmt.Println(conn.Count([]byte(args[1]), []byte(args[2]), []byte(args[3]), true, false))
}