async-redis
async-redis copied to clipboard
createClient blocks
Both variants do not return to console.
const asyncRedis = require("async-redis");
const client = asyncRedis.createClient();
// (async () => {
// console.log("hello")
// })()
console.log("hello")
createClient is to blame
Oops, client.quit() helps. Should be documented