dtcuv8044 2015-03-12 19:19
浏览 113

Redis:记录查询输出

I have found that a redis application is returning, from its REST API (which uses a redis library), the wrong result (0, instead of 5).

In my code for running this query via Go, I run:

println("LLEN HANDLER")
infoL := HandleError(pool.Get(0).Do("LLEN","xyz")).(int64)
lengthJSON := HandleError(json.MarshalIndent(infoL, "", " ")).([]byte)
print("RETURN LEN = "+string(lengthJSON))
rw.Write(lengthJSON)

This returns 0.

However, if I run the query from redis-cli (on slaves, or on master)

LLEN xyz

I get the correct result. The result is 5.

In particular, I'm using https://github.com/xyproto/simpleredis , and I noticed that in the same app, all queries of the form:

list := simpleredis.NewList(pool, key)
//members := HandleError(list.GetAll()).([]string)
members := HandleError(list.GetLastN(4)).([]string)

work normally and return non-null data, which confirms that the network connectivity etc in the system is working.

  • 写回答

1条回答 默认 最新

  • duangua6912 2015-03-13 17:07
    关注

    simpleredis runs a SELECT [dbindex] command before running the query.

    Does it work if you run SELECT before LLEN?

    评论

报告相同问题?

悬赏问题

  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图