
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?
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?
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.
Store a value in redis store using Nestjs - Stack Overflow
May 31, 2020 · import * as redisStore from 'cache-manager-redis-store'; CacheModule.register({ store: redisStore, host: 'redis', port: 6379, }), I would like to use it to store a single value, however, I do not …
redis - ERR CROSSSLOT Keys in request don't hash to the same slot ...
Feb 6, 2025 · Redis Cluster implements all the single key commands available in the non-distributed version of Redis. Commands performing complex multi-key operations like Set type unions or …
How can I update a redis value without affecting the remaining TTL ...
Feb 20, 2014 · Is it possible to SET redis keys without removing their existing ttl? The only way I know of at the present time is to find out the ttl and do a SETEX but that seems less accurate.
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 *?
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#.
Redis as a database - Stack Overflow
Jan 17, 2011 · I want to use Redis as a database, not a cache. From my (limited) understanding, Redis is an in-memory datastore. What are the risks of using Redis, and how can I mitigate them?
Unable to save in background (redis-server) - Stack Overflow
Redis background saving schema relies on the copy-on-write semantic of fork in modern operating systems: Redis forks (creates a child process) that is an exact copy of the parent.