约 50 个结果
在新选项卡中打开链接
  1. How do I run Redis on Windows? - Stack Overflow

    2011年6月25日 · 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

    2010年10月24日 · 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 …

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

  4. Store a value in redis store using Nestjs - Stack Overflow

    2020年5月31日 · 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 …

  5. redis - ERR CROSSSLOT Keys in request don't hash to the same slot ...

    2025年2月6日 · 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 …

  6. How can I update a redis value without affecting the remaining TTL ...

    2014年2月20日 · 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.

  7. Get Redis keys and values at command prompt - Stack Overflow

    2020年6月3日 · 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 *?

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

    2011年2月15日 · 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#.

  9. Redis as a database - Stack Overflow

    2011年1月17日 · 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?

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