Redis for C# and .NET Articles, Tutorials & News
Redis for C# and .NET articles, tutorials, and news from the DotNetNews archive.
80 articles Updated
Start here
Editor picks for Redis
-
Redis Caching Strategies for High-Traffic ASP.NET Core Applications
c-sharpcorner.com Issue #503
Straightforward and useful. Redis strategy discussions matter more when traffic patterns and invalidation costs are part of the conversation.
-
Building a Cost-Effective Async Export Pipeline in ASP.NET
medium.com Issue #502
A sensible pattern for large exports without dragging in heavy infrastructure. Channels plus hosted services remains underrated.
-
Building High-Performance Distributed Caching with Redis and ASP.NET Core
c-sharpcorner.com Issue #492
Redis remains one of the most practical performance wins for web apps when used with discipline.
-
Strongly-Typed Redis Caching in ASP.NET Core (Without the Boilerplate)
medium.com Issue #481
This addresses a real ergonomic gap in IDistributedCache with a more pleasant typed approach.
-
Real-time driver location tracking in .NET
csharpdigest.net Issue #477
Nice real-time systems example combining Redis GEO with SignalR for a concrete tracking scenario.
-
🔴 VS Code Live: Building Agents with Memory using Redis + Copilot
youtube.com Issue #465
Worth a look if you're experimenting with Redis-backed memory patterns and agent tooling inside VS Code.
-
Real-time driver location tracking in .NET
csharpdigest.net Issue #465
Nice real-time architecture example combining Redis GEO with SignalR for live location updates.
-
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
codewithmukesh.com Issue #464
A practical guide that gets into the operational details teams actually need: partitioning, Redis coordination, rejection handling, and policy tradeoffs.
Redis C# from the DotNetNews archive, curated for .NET developers who already ship production code. This is a reading list pulled from daily issues, not a substitute for the official docs on Redis for C# and .NET.
Use Start here for the editorial shortlist, then browse Latest or the full archive when you need more depth. Coverage leans toward Redis C#, Redis .NET, caching Redis ASP.NET Core. Recent pieces worth opening: “Redis Caching Strategies for High-Traffic ASP.NET Core Applications” and “Building a Cost-Effective Async Export Pipeline in ASP.NET”.
Every item links out to the original publisher and back to the DotNetNews issue where it ran.
Latest
Newest Redis from the archive
-
Real-time driver location tracking in .NETcsharpdigest.net Issue #477
-
Distributed Caching in ASP.NET Core Using Redis: Best Practicesc-sharpcorner.com Issue #474
-
Real-time driver location tracking in .NETcsharpdigest.net Issue #465
-
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guidecodewithmukesh.com Issue #464
Archive
Page 1 of 4
Newest first
-
Redis Caching Strategies for High-Traffic ASP.NET Core Applications
c-sharpcorner.com Issue #503
Boost ASP.NET Core app performance with Redis caching strategies. Reduce database load, improve response times, and scale effectively.
-
Building a Cost-Effective Async Export Pipeline in ASP.NET
medium.com Issue #502
How to stop your API from freezing on large exports — using nothing but System.Threading.Channels, IHostedService, and Redis.
-
Building High-Performance Distributed Caching with Redis and ASP.NET Core
c-sharpcorner.com Issue #492
Boost ASP.NET Core app performance with Redis distributed caching. Learn integration, best practices, and patterns for scalability.
-
Strongly-Typed Redis Caching in ASP.NET Core (Without the Boilerplate)
medium.com Issue #481
If you've added Redis to an ASP.NET Core app, you've probably met IDistributedCache. It does the job, but it only speaks in byte[] and…
-
Real-time driver location tracking in .NET
csharpdigest.net Issue #477
using Redis GEO, a mutable state buffer, and SignalR
-
Distributed Caching in ASP.NET Core Using Redis: Best Practices
c-sharpcorner.com Issue #474
Learn how to implement distributed caching in ASP.NET Core using Redis. Explore caching strategies, Redis integration, and best practices for scalable applications.
-
🔴 VS Code Live: Building Agents with Memory using Redis + Copilot
youtube.com Issue #465
Bluesky: https://bsky.app/profile/vscode.dev Bluesky: bsky.app/profile/guy.dev
-
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