dongxie7683 2015-10-17 04:20
浏览 801
已采纳

如何在Golang中为Redis(redigo)Pubsub编写更好的Receive()?

psc := redis.PubSubConn{c}
psc.Subscribe("example")

func Receive() {
    for {
        switch v := psc.Receive().(type) {
        case redis.Message:
            fmt.Printf("%s: message: %s
", v.Channel, v.Data)
        case redis.Subscription:
            fmt.Printf("%s: %s %d
", v.Channel, v.Kind, v.Count)
        case error:
            return v
        }
    }
}

In the above code(taken from Redigo doc), if connection is lost, all subscriptions are also lost. What will be better way to recover from lost connection and resubscribe.

  • 写回答

1条回答 默认 最新

  • douhuan6305 2015-10-17 19:26
    关注

    Use two nested loops. The outer loop gets a connection, sets up the subscriptions and then invokes the inner loop to receive messages. The inner loop executes until there's a permanent error on the connection.

    for {
        // Get a connection from a pool
        c := pool.Get()
        psc := redis.PubSubConn{c}
    
        // Set up subscriptions
        psc.Subscribe("example"))
    
        // While not a permanent error on the connection.
        for c.Err() == nil {
            switch v := psc.Receive().(type) {
            case redis.Message:
                fmt.Printf("%s: message: %s
    ", v.Channel, v.Data)
            case redis.Subscription:
                fmt.Printf("%s: %s %d
    ", v.Channel, v.Kind, v.Count)
            case error:
                fmt.Printf(err)
            }
        }
        c.Close()
    }
    

    This example uses a Redigo pool to get connections. An alternative is to dial a connection directly:

     c, err := redis.Dial("tcp", serverAddress)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部