donglizuo8892 2015-03-15 00:19
浏览 1411
已采纳

如何从golang的Redis键值存储中获取列表值?

I am writing a function in golang to get the value from redis db by passing the key. The value is a list. I am using 'GET' redis command to get the value. But it is giving me error.

You can find below the code,

func GetValue(key string) []string {
    var value []string
    var err error
    value, err = redis.Strings(conn.Do("GET", key))

    if err != nil {
        log.Fatal(err)
    }
    fmt.Println(value)
    return value
}

func RetrieveValue() {
    keyType, _ := conn.Do("TYPE", recentItemKey)
    fmt.Println("Type", keyType)

    var results []string
    results = GetValue(recentItemKey)

    for _, val := range results {
        fmt.Println(val)
    }
}

And the output is here,

Type list
2015/03/14 19:09:12 WRONGTYPE Operation against a key holding the wrong kind of value
exit status 1

Version

Go 1.4.2
Redis-2.8.19

Redis Go Library

github.com/garyburd/redigo/redis

Could anyone help me on this.? Thank you

  • 写回答

1条回答 默认 最新

  • duanquanzhi5560 2015-03-15 02:59
    关注

    Use LRANGE to get the elements of a list:

    func GetValues(key string) []string {
      value, err := redis.Strings(conn.Do("LRANGE", key, 0, -1))
      if err != nil {
        log.Fatal(err)
      }
      return value
    }
    

    The GET command gets the value of a string key. The GET command does not work on list keys.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 PADS Logic 原理图
  • ¥15 PADS Logic 图标
  • ¥15 电脑和power bi环境都是英文如何将日期层次结构转换成英文
  • ¥20 气象站点数据求取中~
  • ¥15 如何获取APP内弹出的网址链接
  • ¥15 wifi 图标不见了 不知道怎么办 上不了网 变成小地球了
  • ¥50 STM32单片机传感器读取错误
  • ¥15 (关键词-阻抗匹配,HFSS,RFID标签天线)
  • ¥15 机器人轨迹规划相关问题
  • ¥15 word样式右侧翻页键消失