skip to Main Content

Testing Redis functionalities with Jest

I have the following file that connect to a redis database: index.js const redis = require('redis'); const logger = require('../logger'); const config = require('../env'); const client = redis.createClient({ host: config.redis.host, port: config.redis.port }); const connect = () => { client.on('connect',…

VIEW QUESTION

Redis server crash on MacOS 11

I have installed redis using the Rosetta terminal but when I run "redis-server" I get this error. I am on the new Mac Book Pro 2020 with Apple Silicon. redis-server 42116:C 21 Nov 2020 20:07:12.620 # oO0OoO0OoO0Oo Redis is starting…

VIEW QUESTION
Back To Top
Search