3

尝试使用 Python3 设置 ReJSON。我在 Windows (WSL) 中的 Ubuntu 16.04 上运行,并且 Redis 和 ReJSON 正常工作。

在https://github.com/RedisLabs/rejson-py文档中简化了 python以隔离问题:

from rejson import Client, Path

rj = Client(host='localhost', port=6379)

obj = {
    'answer': 42,
    'arr': [None, True, 3.14],
    'truth': {
        'coord': 'out there'
    }
}
rj.jsonset('obj', Path.rootPath(), obj)

temp = rj.jsonget('obj', Path('.truth.coord'))

最后一行错误:

TypeError: cannot use a string pattern on a bytes-like object

我知道 obj 已经写好了,可以在 redis-cli 中看到:

127.0.0.1:6379> JSON.GET obj
"{\"answer\":42,\"arr\":[null,true,3.1400000000000001],\"truth\":{\"coord\":\"out there\"}}"

任何帮助表示赞赏。

4

1 回答 1

4

解决了。需要将 decode_responses 添加到客户端设置中:

rj = Client(host='localhost', port=6379, decode_responses=True)
于 2018-08-12T04:05:06.437 回答