Top "Redis-cli" questions

redis-cli is the command line interface that is installed when installing Redis.

Redis command to get all available keys?

Is there a Redis command for fetching all keys in the database? I have seen some python-redis libraries fetching them. …

redis redis-cli redis-commands
Redis Pubsub and Message Queueing

My overall question is: Using Redis for PubSub, what happens to messages when publishers push messages into a channel faster …

python redis redis-cli
Saving Redis query output to file

Using redis-cli I connected to specific server: redis-cli -h 10.1.xx.xx And select 1 Then just to get list of one …

redis redis-cli
How to delete keys matching a certain pattern in redis

How to delete keys matching a certain pattern in redis using redis-cli. I would like to delete all foo's from …

redis redis-cli
Redis cli delete multiple keys

I have installed Redis in centos and I have multiple keys of redis like this, Product:<id>:<…

redis stackexchange.redis phpredis redis-cli
How to get value by redis-cli keys

I want get value by redis-cli keys This is work redis-cli keys number_* | xargs redis-cli del But this is not …

redis redis-cli
Understanding latency using Redis-Cli

I'm using the redis-cli tool to observe redis-server latency. Here's an example: ubuntu:~$ redis-cli --latency -h 127.0.0.1 -p 6379 min: 0, max: 15, avg: 0.12 (2839 …

redis redis-cli
How to print all values in a list with redis-cli without knowing the size of the list?

In redis-cli, what is the command to print all the values in a list without knowing in advance the size …

redis redis-cli
Get all hashes exists in redis

I'm have hashes in redis cache like: Hash Key Value hashme:1 Hello World hashme:2 Here Iam myhash:1 Next One My …

redis redis-cli
Can I use redis-cli with a connection URL?

I am used to psql which I can use by feeding it the connection string without having to break it …

heroku redis connection-string redis-cli