About 21,300,000 results
Open links in new tab
  1. 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?

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

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

    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 …

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

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

  6. php - How to set password for Redis? - Stack Overflow

    Oct 9, 2019 · Redis got better, machines become faster. Redis 6's config file states that "since Redis is pretty fast an outside user can try up to 1 million passwords per second against a …

  7. Delete all entries in a Redis list - Stack Overflow

    Jul 11, 2019 · Yes, in redis, all data structures are keys. That doesn't mean 'key' is useful in an example. Quite the opposite, I think. Using mylist would make your question clearer. For …

  8. How to use redis username with password in docker-compose?

    Jan 21, 2022 · Currently I have the below service configured in my docker-compose which works correct with redis password. However, I would like to use also redis username together with …

  9. Redis - monitoring memory usage - Stack Overflow

    Jun 23, 2011 · Memory is a critical resource for Redis performance. Used memory defines total number of bytes allocated by Redis using its allocator (either standard libc, jemalloc, or an …

  10. 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, …