About 25,400,000 results
Open links in new tab
  1. Print number of keys in Redis - Stack Overflow

    Is there a way to print the number of keys in Redis? I am aware of keys * But that seems slightly heavy weight. - Given that Redis is a key value store maybe this is the only way to do it. But I...

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

  3. Check Redis server version - Stack Overflow

    the advantage of redis-server --version is that it can be run even when the server is down (e.g. in a Jenkins pipeline when testing a Redis container), while redis-cli info <subinfo> will succeed …

  4. How to start redis-server on a different port than the default port ...

    44 How to start redis-server on a different port than the default port 6379 in Ubuntu? I have used the following steps to install the redis: sudo add-apt-repository ppa:rwky/redis sudo apt-get …

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

    Redis' INFO command just shows me the total size and the number of keys per database which doesn't give me much insight... So any tools/ideas that give me more information when …

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

  7. Connecting to Redis running in Docker Container from Host machine

    Dec 29, 2016 · This looks like a good solution! I was able to open redis-cli directly by running the following command docker exec -it some-redis redis-cli and skip over the bash step.

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

  9. How to set Redis max memory? - Stack Overflow

    Oct 14, 2015 · ./redis-server <path>/redis.conf But,I have no idea about how to write the configure. So I have find the default configure in this. But, I still don't understand how to set …

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