dtb81443 2018-01-22 00:35
浏览 610
已采纳

获取redis golang的队列长度

I am using go-redis package. I fired below query:

rd.LLen("queue_1")

Which returning me below result with type *redis.IntCmd:

llen queue_1: 100001

Count is perfect but I want only count with type of int. Can anyone help?

  • 写回答

3条回答 默认 最新

  • doushi3189 2018-01-22 00:39
    关注

    the LLen func looks like: func (c *cmdable) LLen(key string) *IntCmd

    So it returns an IntCmd type. IntCmd provides this function: func (cmd *IntCmd) Val() int64

    So you can do e.g.

    cmd := rd.LLen("queue_1")
    i := cmd.Val() //i will be an int64 type
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

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

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

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

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

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

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

客服 返回
顶部