gpt4 book ai didi

node.js - 使用 Node jS 的 Redis 配置集

转载 作者:行者123 更新时间:2023-12-02 19:29:45 26 4
gpt4 key购买 nike

团队,

我正在尝试使用 NODE js 应用程序在运行时设置 Redis 的配置,如下所示。

let setConfig = wait this.cacheConnection.config("set", "notify-keyspace-events", "Ex");让 setConfig =等待 this.cacheConnection.config("SET", "notify-keyspace-events", "Ex");

上面的代码总是向我返回 false。

我在我的应用程序中使用 redis Node 模块。所有其他命令(如 getAsync、SetAsync)对我来说都工作得很好。 让结果=等待this.cacheConnection.getAsync(“keyname”);

这里的任何建议都会很棒。

最佳答案

请在redis客户端准备好服务命令后设置Config

const redisClient = this.cacheConnection;
redisClient.on("ready", function(err) {
if(!err) redisClient.config("SET", "notify-keyspace-events", "Ex");
});

关于node.js - 使用 Node jS 的 Redis 配置集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58166382/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com