About 953,000 results
Open links in new tab
  1. Redis command to get all available keys? - Stack Overflow

    Is there a Redis command for fetching all keys in the database? I have seen some python-redis libraries fetching them. But was wondering if it is possible from redis-client.

  2. Get Redis keys and values at command prompt - Stack Overflow

    Jun 3, 2020 · I have a very small data saved in Redis and the following is working as expected that will allow me to download all keys. redis-cli keys * Is there any way to get the keys+values *?

  3. Import from Redis "No module named 'redis.commands'"

    Jul 8, 2022 · I have two imports import redis from redis.commands.json.path import Path redis is installed, however I'm getting ModuleNotFoundError: No module named 'redis.commands' Any …

  4. How to List All Redis Databases? - Stack Overflow

    Oct 2, 2020 · I ran this command to access my redis server. telnet 127.0.0.1 6379 What is the command to show all of my databases?

  5. Executing batches of commands using redis cli - Stack Overflow

    Feb 18, 2019 · I have a long text file of redis commands that I need to execute using the redis command line interface: e.g. DEL 9012012 DEL 1212 DEL 12214314 etc. I can't seem to …

  6. What Redis commands don't work in cluster mode?

    Jul 13, 2022 · I'm trying to figure out which commands are supported cluster-wide and which aren't (so we don't make another mistake like this ) and the only hint I see is in the Redis …

  7. python - ImportError: No module named redis - Stack Overflow

    Oct 10, 2013 · When I did pip install redis, the command window found python in path differently than Visual Studio Code. I needed to update my Visual Studio Code to reflect the updated …

  8. How do I delete everything in Redis? - Stack Overflow

    After you start the Redis-server using: service redis-server start --port 8000 or redis-server. Use redis-cli -p 8000 to connect to the server as a client in a different terminal.

  9. Redis: Show database size/size for keys - Stack Overflow

    You're Right the Redis documentation doesn't show any commands that can return the consumed memory of certain keys. Redis does not provide an out-of-the-box command to retrieve …

  10. How to connect to remote Redis server? - Stack Overflow

    Nov 18, 2016 · redis-cli -h 10.144.62.3 -p 30000 REDIS CLI COMMANDS Host, port, password and database By default redis-cli connects to the server at 127.0.0.1 port 6379. As you can …