我试图将 JSON 设置为 Redis 中的值,但收到以下代码的错误:
const createClient = require('redis');
async function redisJSONDemo () {
try {
const TEST_KEY = 'test_node';
const client = createClient.createClient();
await client.connect();
// RedisJSON uses JSON Path syntax. '.' is the root.
await client.json.set(TEST_KEY, '.', { node: 'blah' });
const value = await client.json.get(TEST_KEY, {
// JSON Path: .node = the element called 'node' at root level.
path: '.node'
});
console.log(`value of node: ${value}`);
await client.quit();
} catch (e) {
console.error(e);
}
}
redisJSONDemo();
错误:
ReplyError:错误未知命令 JSON.SET,参数开头为:test_node, ., {"node":"blah"},
如何修复?
潜在原因很少:
#1 RedisJSON 模块未安装。尝试:
redis-cli info modules
输出应包含
module:name=ReJSON,ver=...
并且您应该能够在 redis-cli 中执行以下操作:
127.0.0.1:6379> json.set test_node $ '{ "node": "blah" }'
OK
127.0.0.1:6379> json.get test_node
"{\"node\":\"blah\"}"
#2 redis npm 模块是旧版本。
npm -v redis
8.1.4
如果您的年龄较大,请尝试
npm upgrade redis
。
该错误看起来像一个,来自 Redis 服务器,因此问题 1 是最有可能的原因。
您也可以尝试使用
redis-stack
docker 容器
# Create a docker-compose.yaml placed in root dir with following description
# Then just run >> docker compose up
version: "3.9"
services:
redis:
image: "redis/redis-stack:edge"
ports:
- "6379:6379"
environment:
- "REDIS_ARGS=--appendonly yes"
volumes:
- ./data:/data
deploy:
replicas: 1
restart_policy:
condition: on-failure
我通过在windows中安装redisJoson模块来解决这个问题。https://blog.csdn.net/Bilal_0/article/details/130231084