About 18,800,000 results
Open links in new tab
  1. Redis-cli with password - Stack Overflow

    Redis-cli with password Asked 9 years, 9 months ago Modified 1 year, 2 months ago Viewed 247k times

  2. Redis in docker-compose: any way to specify a redis.conf file?

    redis: image: redis ports: - "6379" I guess it's using standard settings like binding to Redis at localhost. I need to bind it to 0.0.0.0, is there any way to add a local redis.conf file to change …

  3. Stop redis server. Neither shutdown nor stop works

    The redis start and shutdown script utilizes redis-cli, which means that shutdown will not happen without auth and the server will hang in a loop waiting for redis to shutdown, which won't ever …

  4. 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.

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

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

    154 My redis instance seems to being growing very large and I'd like to find out which of the multiple databases I have in there consumes how much memory. Redis' INFO command just …

  7. Open Redis port for remote connections - Stack Overflow

    I can ping pong Redis on the server: # redis-cli ping PONG But remotely, I got problems: $ src/redis-cli -h REMOTE.IP ping Could not connect to Redis at REMOTE.IP:6379: Connection …

  8. How Can I Browse/View The Values Stored in Redis [closed]

    Are there any good browsers/explorer for viewing Redis out there ? Am new to Redis so my expectation is if there is something similar to MongoVUE,Toad or SQLExplorer. I tried Redis …

  9. caching - Memcached vs. Redis? - Stack Overflow

    Pipelining Redis provides a feature called ' pipelining '. If you have many redis commands you want to execute you can use pipelining to send them to redis all-at-once instead of one-at-a …

  10. how to store a complex object in redis (using redis-py)

    Storing a complex data structure in redis hash. I think the best way to resolve the issue is by serialiasing the json object to string and store it as value for another object.