data access
Redis for C# and .NET Articles, Tutorials & News
Redis for C# and .NET articles, tutorials, and news from the DotNetNews archive.
80 articles Updated
This DotNetNews topic collects Redis C# material from the daily archive. Redis for C# and .NET is part of the data-access layer most .NET apps rely on, whether the store is relational or document-oriented. The page is for people who already ship C# and need a faster way to find relevant posts.
Expect publisher tutorials, release notes, architecture write-ups, and field notes linked from DotNetNews issues. Start here is a short editorial shortlist for Redis for C# and .NET; the archive list is chronological and larger. Nothing here claims every article was production-tested by the editors.
Recurring subtopics in recent issues include Redis C#, Redis .NET, caching Redis ASP.NET Core, and StackExchange.Redis. Secondary angles such as Redis C# and Redis .NET appear when the archive actually covered them. Related hubs such as .NET Performance and Optimization and ASP.NET Core cover adjacent problems.
Each card points at the original publisher URL and the DotNetNews issue that carried it, so you can read the article in context or jump straight to the source.
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
Covers building a Cost-Effective Async Export Pipeline in ASP.NET.
-
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.
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