data access
Redis for C# and .NET Articles, Tutorials & News
Redis for C# and .NET articles, tutorials, and news from the DotNetNews archive.
78 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
-
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 »
-
Your Distributed Cache Isn’t Actually Distributed — The Subtle .NET Mistake Killing Scale
blog.devgenius.io Issue #340
(Why your blazing-fast Redis still collapses under load) Continue reading on Dev Genius »
-
IDistributedCache (Redis) - remove by prefix
josef.codes Issue #337
Implementing prefix-based cache invalidation in Redis using a dotnet core, a custom IDistributedCache implementation and some Lua scripting.
-
ASP.NET Core 9 performance, .NET 10 changes
DotNetNews Issue #334
A varied .NET roundup covering ASP.NET Core 9 speedups, .NET 10 breaking changes, logging, collections, rate limiting, and cloud updates.
-
Implementing Distributed Caching with Redis in ASP.NET Core for Scalable Applications
c-sharpcorner.com Issue #331
Boost ASP.NET Core app performance with Redis distributed caching! Learn to set up, configure, and implement caching for scalable, high-traffic applications. Optimize your database workload and improv...
-
How to Implement Rate Limiting and API Throttling in ASP.NET Core
c-sharpcorner.com Issue #331
Protect your ASP.NET Core APIs with rate limiting! Learn to implement throttling using built-in features, Redis, and best practices for production environments.
-
Redis: The Fastest In-Memory Data Store Powering Modern Applications
c-sharpcorner.com Issue #324
Unlock blazing-fast performance with Redis! This guide explores Redis as a versatile in-memory data store for caching, real-time apps, and MERN stack optimization.
-
Distributed Caching in ASP.NET Core with Redis | A Complete Practical Guide (.NET 9 + Minimal APIs)
medium.com Issue #323
I didn’t understand caching for years.
-
The Developers’ Guide to Caching: Why We Cache and How It Really Works
blog.williamachuchi.com Issue #321
Caching is one of those concepts every developer has heard of yet few fully understand until they’ve been forced to scale. This article is…
-
Understanding Reflection in C#
c-sharpcorner.com Issue #318
Explore C# Reflection in ASP.NET WebForms! Dynamically inspect types, create objects, and invoke methods at runtime. Perfect for plugins and dynamic UIs.
-
Real-Time Cache Monitoring and Alerting with NCache in ASP.NET Core Web API
c-sharpcorner.com Issue #314
Boost ASP.NET Core Web API performance with NCache! This guide details integrating NCache for distributed caching, real-time monitoring, and proactive alerting. Learn to configure NCache, track cache ...
-
Is Redis Overkill? Rethink SignalR Backplane with PostgreSQL
levelup.gitconnected.com Issue #314
Redis isn’t always the right fit. Here’s how PostgreSQL can serve as a backplane for SignalR in distributed, low-throughput applications. Continue reading on Level Up Coding »
-
ASP.NET Core Caching Mastery: Redis, Memory Cache, Distributed Patterns & Performance Optimization (Part - 27 of 40)
c-sharpcorner.com Issue #314
Master ASP.NET Core caching with this comprehensive guide! Explore Redis, memory caching, and distributed patterns for building high-performance applications. Learn real-world strategies, optimization...