gpt4 book ai didi

redis - 追踪 Redis 错误事件

转载 作者:可可西里 更新时间:2023-11-01 11:37:09 25 4
gpt4 key购买 nike

我的 Node.js 应用程序使用 node-redis npm 模块作为其 redis 客户端。我们在客户端收到一条关于我们的应用程序可能发生崩溃的错误消息,但无法对其进行追踪。 Redis 客户端收到一个错误事件,其中包含一个提供崩溃原因的错误对象。不幸的是,字符串“user_id”在我们的代码中使用得如此频繁,以至于很难知道这个问题发生在代码中的哪个位置。关于如何获得更多洞察力的任何想法?

var that = this;
this.redisClient.on("error", function (err) {
if ( !that.stopped ) {
Logger.error("Redis Subscribe Client Error =" + err);
}
});

输出:

Redis Subscribe Client Error =TypeError: Cannot read property 'user_id' of undefined. pid=3571

NPM 模块:https://github.com/mranney/node_redis

最佳答案

err.stack显示堆栈:

this.redisClient.on("error", function (err) {
console.log(err.stack);
});

关于redis - 追踪 Redis 错误事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31299410/

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