我正在使用redigo库尝试订阅Redis频道,然后处理已发布的消息。 如何处理出错的情况? 这就是我想出的。这是一个很好的方法吗?还有更好的方法吗?
注意:这个问题特定于redigo,但我认为它适用于需要重新连接的其他地方。
package main
import (
"fmt"
"time"
"github.com/garyburd/redigo/redis"
)
func main() {
for {
fmt.Println("connecting...")
c, err := redis.Dial("tcp", "localhost:6379")
if err != nil {
fmt.Println("error connecting to redis")
time.Sleep(5 * time.Second)
continue
}
psc := redis.PubSubConn{c}
psc.Subscribe("example")
ReceiveLoop:
for {
switch v := psc.Receive().(type) {
case redis.Message:
fmt.Printf("%s: message: %s\n", v.Channel, v.Data)
case redis.Subscription:
fmt.Printf("%s: %s %d\n", v.Channel, v.Kind, v.Count)
case error:
fmt.Println("there was an error")
fmt.Println(v)
time.Sleep(5 * time.Second)
break ReceiveLoop
}
}
}
}
我只是将它放在示例的main()函数中。它真的会在一些goroutine中运行。
答案 0 :(得分:5)
是的,使用标签和循环是重新连接的标准做法。
你唯一缺少的就是关闭连接。
select T1.id,
stuff((select ' '+T2.[message]
from @A as T2
where T1.id = T2.id
for xml path(''), type).value('.', 'varchar(max)'), 1, 1, '') as [message]
from @A as T1
group by T1.id
为了获得更多弹性,您可能需要 psc.Close()
break ReceiveLoop
,以便拨号呼叫无法无限期挂起。