data access
Redis for C# and .NET Articles, Tutorials & News
Redis for C# and .NET articles, tutorials, and news from the DotNetNews archive.
90 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
-
-
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.
-
Developer roadmap, architecture, and C# patterns
DotNetNews Issue #369
A practical mix of roadmap guidance, API architecture, LINQ and error-handling tips, plus AI and data pitfalls for shipping better .NET systems.
-
What is Redis and how does it fit into Clean Architecture in a .NET application
c-sharpcorner.com Issue #361
Unlock blazing-fast .NET performance with Redis! Learn how to integrate this in-memory data store into your Clean Architecture for caching, messaging, and more. Boost scalability!
-
Redis Cache Patterns Explained: Cache-Aside vs Read-Through vs Write-Through vs Write-Behind
c-sharpcorner.com Issue #360
Learn the four main Redis caching patterns, how they work, their pros and cons, and which pattern you should use in real production systems. Written for architects and senior developers.
-
Using Redis and Redis Stack with .NET — A Practical, Production‑Ready Guide
medium.com Issue #353
Audience: .NET developers building high‑performance, scalable systems Level: Intermediate → Advanced Format: Medium‑style long‑form…
-
Publish–Subscribe Messaging in .NET 9 Using Redis Channels
medium.com Issue #351
Part 1 — Understanding Redis Pub/Sub + Setting Up .NET 9 Messaging Architecture Continue reading on .Net Programming »
-
Stop Using IMemoryCache in .NET 10: The HybridCache Revolution
medium.com Issue #351
Why your custom Redis wrapper is killing your performance — and how to fix it.
-
Redis in C# — A Technical Overview
c-sharpcorner.com Issue #346
Explore Redis with C# using StackExchange.Redis for caching, distributed locks, and pub/sub. Enhance .NET application performance and scalability with this in-memory data store.
-
Blazing Fast Caching Service in ASP.NET
medium.com Issue #343
🟦 PART 1 — Blazing Fast Distributed Caching in ASP.NET Core 9 with Redis: The Ultimate Theory Primer Continue reading on CodeToDeploy »