About 50 results
Open links in new tab
  1. 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?

  2. How to atomically delete keys matching a pattern using Redis

    Oct 24, 2010 · In my Redis DB I have a number of prefix:<numeric_id> hashes. Sometimes I want to purge them all automatically. How do I do this without using some distributed locking mechanism?

  3. Redis raises "NOAUTH Authentication required" error but there is no ...

    I'm running Redis with Docker and there is an authentication password with the REDIS_PASSWORD env variable. After connecting to the container with docker exec command, connect to redis CLI by …

  4. 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 monitoring the redis …

  5. How to create own database in redis? - Stack Overflow

    Feb 25, 2016 · Redis database is not an equivalent of database names in DBMS like mysql. It is a way to create isolation and namespacing for the keys, and only provides index based naming, not custom …

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

  7. c# - Start using Redis with ASP.NET - Stack Overflow

    Feb 15, 2011 · How do I start using Redis database with ASP.NET? What I should install and what I should download? I'm using Visual Studio 2008 with C#.

  8. Redis command to get all available keys? - Stack Overflow

    Mar 9, 2011 · 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.

  9. How to set password for redis-server - Stack Overflow

    Mar 22, 2021 · I have a 3-instance high availability redis deployed. On each server I have redis and sentinel installed. I am trying to set a password so that it requests it at the moment of entering with …

  10. How to create a redis cloud connection url with an auth password

    Jun 3, 2017 · I'm switching over from a heroku addon to a direct redis cloud account and am a bit puzzled on how to generate the redis url with the auth info. The old heroku add-on url was in the …