Top "Redis" questions

Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker.

Linux - Install redis-cli only

I have a Linux server with Redis installed and I want to connect to it via command line from my …

linux redis
Could not connect to Redis at 127.0.0.1:6379: Connection refused with homebrew

Using homebrew to install Redis but when I try to ping Redis it shows this error: Could not connect to …

redis redis-server
What is Express.js?

I am a learner in Node.js. What's Express.js? What's the purpose of it with Node.js? Why do …

node.js express redis
Redis connection to 127.0.0.1:6379 failed - connect ECONNREFUSED

I working with node.js by expressjs I try to store an account to session. So, i try to test …

javascript node.js session express redis
How to set password for Redis?

I'm working with redis on my local machine so I dont really need to set up a password to connect …

php redis
how to check redis instance version?

how to check Redis server version? I've found in Redis site this command: $ redis-server and that should give me (according …

redis version
How to connect to remote Redis server?

I have URL and PORT of remote Redis server. I am able to write into Redis from Scala. However I …

redis
Print number of keys in Redis

Is there a way to print the number of keys in Redis? I am aware of keys * But that seems …

redis
Redis - Connect to Remote Server

I've just install Redis succesfully using the instructions on the Quick Start guide on http://redis.io/topics/quickstart on …

ubuntu configuration redis
Redis strings vs Redis hashes to represent JSON: efficiency?

I want to store a JSON payload into redis. There's really 2 ways I can do this: One using a simple …

json redis