About 8,660,000 results
Open links in new tab
  1. Trying to connect to Redis returns an ECONNREFUSED

    Jun 5, 2018 · It also looked strange to me, but the call to connect to Redis actually uses the env variable. I logged the variable I use on connect, just in case, and it shows the right value.

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

  3. How do I run Redis on Windows? - Stack Overflow

    Jun 25, 2011 · How do I run Redis on Windows? The Redis download page just seems to offer *nix options. Can I run Redis natively on Windows?

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

  5. redis - Finding keys using wildcards - Stack Overflow

    Jan 5, 2012 · KEYS blocks the whole Redis instance while it is scanning linearly the millions of keys you have stored. It is more a debugging command supposed to be used in administration …

  6. Redis: How to delete all keys older than 3 months

    May 13, 2013 · I want to flush out all keys older than 3 months. These keys were not set with an expire date. Or if that is not possible, can I then delete maybe the oldest 1000 keys?

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

    Nov 18, 2016 · I am able to write into Redis from Scala. However I want to connect to remote Redis via terminal using redis-server or something similar in order to make several call of hget, …

  8. Does Redis use a username for authentication? - Stack Overflow

    Oct 4, 2017 · I have set up Redis in my environment, and have only seen a section for authorizing via a password. Is there a way to set up a username too? Or is it only authenticated via …

  9. How to disable persistence with redis? - Stack Overflow

    Feb 28, 2015 · To disable all data persistence in Redis do the following in the redis.conf file: Disable AOF by setting the appendonly configuration directive to no (it is the default value). …

  10. How to setup username and password in redis? - Stack Overflow

    Sep 18, 2022 · Tying to setup username and password for redis (6). Have seen some documentation that helps setting up a password for redis. Is there a way I can set both the …