我需要从redis队列中做一个简单的lpop。
在go lang中,如果我使用blpop来阻止流行音乐,则可以使用以下代码
reply, err := redis.Strings(conn.Do("BLPOP", key, 1))
if err == nil {
fmt.Println(reply[1])
// do something with string reply[1]
}
但是我不想阻止。我只需要在队列为空时结束。
那我该怎么做
如果我做
redis.Strings(conn.Do("LPOP", key))
即更改BLPOP为LPOP,我收到一个redigo错误ERROR = redigo: unexpected type for Strings, got type []uint8
最佳答案
我可以使用redis.String()获得lpop'ed值
所以这有效
reply, err := redis.String(conn.Do("LPOP", key))
if err == nil {
fmt.Printf("REPLY= %s\n", reply)
//do something
关于go - 如何在Golang中做Redis(Redigo)LPOP,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52279988/