About 113,000 results
Open links in new tab
  1. caching - Is Redis just a cache? - Stack Overflow

    I can't see any difference between Redis and caching technologies like Velocity or the Enterprise Library Caching Framework. You're effectively just adding objects to an in-memory data store …

  2. .net - How Microsoft HybridCache works in a Microservice Setup …

    Jan 29, 2025 · 2 The Microsoft.Extensions.Caching.Hybrid package (available in .NET 9) provides a hybrid caching mechanism that allows you to combine both in-memory caching (for fast local …

  3. How to cache large objects using Redis cache - Stack Overflow

    Dec 23, 2015 · 12 Our current caching implementation caches large amounts of data in report objects (50MB in some cases). We’ve moved from memory cache to file cache and use …

  4. php - Laravel Redis Cache Key Deletion: del ($key) Fails, but ...

    Jan 30, 2025 · Setup Details: Laravel version: 10.0.3 Redis client: phpredis Redis version: 7.4.1 Cache prefix: laravel_cache_solar_cache For the project we use docker containers, Redis is in …

  5. c# - cannot get to redis from aspire.net9 - Stack Overflow

    Dec 1, 2024 · "ConnectionStrings": { "cache": "hostname:port" } Many articles provide incorrect or outdated information, especially for .NET 8 and .NET 9 Aspire. It’s best to refer directly to the …

  6. What is maintenanceWindow attribute in Azure redis cache patch …

    May 27, 2020 · What is the maintenance window? When scheduling updates for Azure Redis Cache, you can decide the day of the week, start UTC hour and maintenance window. Setting …

  7. Redis is single-threaded, then how does it do concurrent I/O?

    May 8, 2012 · Redis is single-threaded with epoll/kqueue and scale indefinitely in terms of I/O concurrency. I surely misunderstand the whole threading thing, because I find this statement …

  8. How to update the exising redis cache instance to zonal?

    Jun 12, 2025 · The only supported way to get a zonal Redis instance is to create a new Premium cache with zone redundancy enabled and migrate to it. To update a non-zonal cache to a …

  9. How does redis expire keys? - Stack Overflow

    Mar 23, 2016 · How does Redis implement the expiration of keys? From here I learnt that Redis stores the time at which the key will expire, but how exactly is this implemented?

  10. MongoDB with redis - Stack Overflow

    May 22, 2012 · Redis works excellently with MongoDB as a caching server. Here is what happens. Anytime that Mongoose issues a cache query, it will first go over to the cache server. …