data access
Redis for C# and .NET Articles, Tutorials & News
Redis for C# and .NET articles, tutorials, and news from the DotNetNews archive.
98 articles Updated Page 2 of 4
Browse additional Redis for C# and .NET articles from the DotNetNews archive.
Redis for C# and .NET articles
Page 2 of 4
Newest first
-
Real-time driver location tracking in .NET
csharpdigest.net Issue #465
using Redis GEO, a mutable state buffer, and SignalR
-
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com Issue #464
Production-grade rate limiting in ASP.NET Core .NET 10. All 4 algorithms, partitioning, Redis backplane, OnRejected with Retry-After, multi-tenant tiers, and a real decision matrix.
-
Dirty Tracking at the Application Layer: Cutting Redis Write Volume by 99% in a Real-Time…
blog.stackademic.com Issue #461
We were allocating 143MB of strings on every merge cycle. The answer was a concept borrowed from CPU cache design: the dirty bit. Continue reading on Stackademic »
-
Building a Policy-Driven Distributed Concurrency Engine for AI Workloads in .NET
medium.com Issue #460
How Redis ZSET leases, Lua-based atomic admission, DAG step claiming, and policy-driven throttling make distributed AI execution safer…
-
FusionCache — Why Your Cache Needs a Resiliency Strategy, Not Just a TTL
medium.com Issue #460
Hello,
-
Just Use Postgres as a Queue?
codeopinion.com Issue #443
I’ve noticed a trend, and a lot of people are saying the same thing: just use Postgres as a queue. No Kafka, no Redis, no RabbitMQ, just one database for everything. And I totally get it. I get the ap...
-
HybridCache in ASP.NET Core .NET 10 - Complete Guide
codewithmukesh.com Issue #435
Master HybridCache in ASP.NET Core .NET 10. BenchmarkDotNet results, stampede protection demo, tag-based invalidation, Redis L2 setup, and migration from IDistributedCache.
-
Using Redis with .NET -8,9,10: A Step-by-Step Guide
c-sharpcorner.com Issue #432
Learn how to integrate Redis, the blazing-fast in-memory data store, with your .NET 8, 9, or 10 applications using StackExchange.Redis for caching and more!
-
-
In-memory Cache vs Distributed Cache: When to Choose Redis?
c-sharpcorner.com Issue #426
Discover the best caching strategy for your app! Compare in-memory vs. distributed caches like Redis. Learn when Redis is essential for scalable, high-performance applications.
-
ASP.NET Core Output Cache: How to Speed Up Your API with In-Memory Cache and Redis
antondevtips.com Issue #422
Learn how to use Output Cache in ASP.NET Core using IMemoryCache, IDistributedCache, and Redis. This guide covers Output Cache setup in ASP.NET Core, expiration time, cache policies, VaryByHeader, Var
-
Scaling SignalR With a Redis Backplane
milanjovanovic.tech Issue #417
SignalR connections are server-local. Scale out to multiple instances and messages stop reaching the right clients. Here's how the Redis backplane fixes that - and what you still need to get right.
-
Solving the distributed cache invalidation
csharpdigest.net Issue #412
HybridCache combines fast in-memory caching with distributed caching like Redis
-
How to Implement Redis Caching in ASP.NET Core?
c-sharpcorner.com Issue #407
Boost ASP.NET Core performance with Redis caching! Learn to implement it for faster response times, reduced database load, and improved scalability. Production-ready guide.
-
The Million-Request Crash: Taming the “Cache Stampede” in Distributed Systems
medium.com Issue #407
How the “Thundering Herd” problem turns your caching layer into a database killer, and the advanced patterns top-tier engineers use to…
-
How to Implement Redis Caching in ASP.NET Core?
c-sharpcorner.com Issue #403
Boost ASP.NET Core performance with Redis caching! Learn to implement it for faster response times, reduced database load, and improved scalability. Production-ready guide.
-
The Million-Request Crash: Taming the “Cache Stampede” in Distributed Systems
medium.com Issue #403
How the “Thundering Herd” problem turns your caching layer into a database killer, and the advanced patterns top-tier engineers use to…
-
How to Set Up Production-Ready Monitoring With ASP.NET Core Health Checks
antondevtips.com Issue #401
Learn how to build a production-ready monitoring system using ASP.NET Core Health Checks. This guide covers adding health checks for Postgres, Redis, MongoDB, and MassTransit (RabbitMQ), creating cust
-
Using Redis in ASP.NET Core
c-sharpcorner.com Issue #400
Boost your ASP.NET Core app's performance with Redis! Learn how to implement caching, reduce database load, and handle high traffic efficiently. Step-by-step guide included.
-
Multiplexed RBAC in .NET — Part 2 : Distributed Rotational Cache with Redis & Lua
medium.com Issue #392
Distributed RBAC cache in .NET using Redis, Lua atomicity, overlap-safe rotation and graceful fallback.
-
Why Optimistic Locking in Redis Is a Game-Changer (With Benchmarks)
shaharsho.medium.com Issue #392
When you need to update shared state in Redis safely — like debiting a balance or updating inventory — you have a few options. Pessimistic…
-
Why I Combined Redis Pub/Sub with In-Memory Cache (Instead of Just Moving Everything to Redis)
medium.com Issue #387
Most engineers, when they hit scaling issues, think: “Let’s move everything to Redis. Problem solved.”
-
Implementing Distributed Caching in Web API with Azure Managed Redis
medium.com Issue #381
I’ve worked with caching before — storing AI chat request/response pairs in Cosmos DB to avoid redundant model calls, and caching API…
-
⚠ Redis Batch Deadlock — A Hidden Async Bug
mahraz-hasnat.medium.com Issue #376
While working with StackExchange.Redis, I faced a strange issue. My code looked correct, but this line never completed:
-
Solving the Distributed Cache Invalidation Problem with Redis and HybridCache
milanjovanovic.tech Issue #375
Learn how to solve the distributed cache invalidation problem in .NET 9 by implementing a Redis Pub/Sub backplane to synchronize HybridCache instances across multiple nodes.