You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This simple script never exits (nodejs on linux). I'd expect it to, the equivalent script python certainly does. I think its due to the ioredis module hanging around and not unref'ing itself.
any clues? I'm basically stuck.
var Redis = require("ioredis");
var redis = new Redis();
redis.set("foo","bar");
redis.incr("nextid");
redis.get("nextid", function (err, result) {
console.log(result);
});
The text was updated successfully, but these errors were encountered:
This simple script never exits (nodejs on linux). I'd expect it to, the equivalent script python certainly does. I think its due to the ioredis module hanging around and not unref'ing itself.
any clues? I'm basically stuck.
The text was updated successfully, but these errors were encountered: