About 1,180,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 do I delete everything in Redis? - Stack Overflow

    I want to delete all keys. I want everything wiped out and give me a blank database. Is there a way to do this in Redis client?

  5. 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?

  6. 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 …

  7. how to execute redis command in shell - Stack Overflow

    Jul 8, 2015 · 23 all: I want to operate redis in my shell,my locate redis ip:127.0.0.1 port:6379,i want to insert data to the redis in my shell,but i don't know how to operate redis in my own …

  8. 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 …

  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. redis - Redisearch full text index not working with Python client ...

    Dec 26, 2023 · When executing a query from the redis-py client, it will transmit the FT.SEARCH command to the redis server. You can observe it by using the command MONITOR from a …