将Redigo Pipeline结果转换为字符串

时间:2014-06-05 14:53:46

标签: go redis pipeline

我设法管道多个 HGETALL 命令,但我无法将它们转换为字符串。

我的示例代码是:

// Initialize Redis (Redigo) client on port 6379 
//  and default address 127.0.0.1/localhost
client, err := redis.Dial("tcp", ":6379")
  if err != nil {
  panic(err)
}
defer client.Close()

// Initialize Pipeline
client.Send("MULTI")

// Send writes the command to the connection's output buffer
client.Send("HGETALL", "post:1") // Where "post:1" contains " title 'hi' "

client.Send("HGETALL", "post:2") // Where "post:1" contains " title 'hello' "

// Execute the Pipeline
pipe_prox, err := client.Do("EXEC")

if err != nil {
  panic(err)
}

log.Println(pipe_prox)

只要您能够轻松显示非字符串结果,就可以了。我得到的是:

[[[116 105 116 108 101] [104 105]] [[116 105 116 108 101] [104 101 108 108 111]]]

但我需要的是:

"title" "hi" "title" "hello"

我也尝试过以下和其他组合:

result, _ := redis.Strings(pipe_prox, err)

log.Println(pipe_prox)

但我得到的是:[]

我应该注意它适用于多个 HGET 键值命令,但这不是我需要的。

我做错了什么?我该怎么做才能转换"数字地图"字符串?

感谢您的帮助

2 个答案:

答案 0 :(得分:5)

每个HGETALL返回它自己的一系列值,这些值需要转换为字符串,管道返回一系列值。首先使用泛型redis.Values来分解这个外部结构然后你可以解析内部切片。

// Execute the Pipeline
pipe_prox, err := redis.Values(client.Do("EXEC"))

if err != nil {
    panic(err)
}

for _, v := range pipe_prox {
    s, err := redis.Strings(v, nil)
    if err != nil {
        fmt.Println("Not a bulk strings repsonse", err)
    }

    fmt.Println(s)
}

打印:

[title hi]
[title hello]

答案 1 :(得分:0)

你可以这样做:

pipe_prox, err := redis.Values(client.Do("EXEC"))
for _, v := range pipe_prox.([]interface{}) {
    fmt.Println(v)
}