skip to Main Content

Redis NodeJs server error,client is closed

I am developing an application where chats has to cached and monitored, currently it is an local application where i have installed redis and redis-cli. The problem i'm facing is (node:5368) UnhandledPromiseRejectionWarning: Error: The client is closed Attaching code snippet…

VIEW QUESTION

Celery unable to use redis

Trying to start Celery first time but issues error as below, i have installed redis and its starting fine , but still somehow django seems to have issues with it , File "<frozen importlib._bootstrap_external>", line 848, in exec_module File "<frozen…

VIEW QUESTION

Node Redis does not work on my windows computer even though the server is up and running

const express = require("express"); const redis = require("redis"); const app = express(); const client = redis.createClient({ url: "redis://[email protected]", }); client.on("connect", function () { console.log("redis connected"); console.log(`connected ${redisClient.connected}`); }); client.on("error", (err) => { console.log(err); }); app.listen(process.env.PORT || 3000, () => {…

VIEW QUESTION
Back To Top
Search