Skip to main content
Tag

redis

All blogs tagged with redis

4
Articles
22,908
Total Views

Showing 4 of 4 articles

09
May
2026
Redis Cache Integration in ASP.NET Core - Distributed Caching with StackExchange.Redis
101 views

This article explores the integration of Redis caching within ASP.NET Core applications using the StackExchange.Redis library. Understanding how to implement distributed caching can significantly enhance the performance and scalability of web applications. Before diving into implementation, familiarity with ASP.NET Core and basic caching concepts is recommended.

20
Nov
2022
Hangfire in ASP.NET Core 3.1 – Background Jobs
8,900 views

Hangfire is an open-source library to schedule and execute background jobs in .NET applications. You'll be able to create a simple background process inside the same application pool or thread without creating separate applications. Hangfire creates background jobs in persistence storage, like MS SQL Server, Redis, MongoDB, and others, that may prevent you from losing the job on recycling IIS pools or exception prevalence.

Translate Page