我通过在我的wsl2 Ubuntu发行版中构建
redis
来运行我的
redis-server
。但不幸的是,我无法使用
ioredis
包连接到它。以下是我的代码(与
ioredis
提供的代码相同):
const Redis = require("ioredis");
const redis = new Redis({
port: 6379,
host: '127.0.0.1'
redis.set("foo", "bar");
redis.get("foo", function (err, result) {
if (err) {
console.error(err);
} else {
console.log(result); // Promise resolves to "bar"