Implementing Memory Caching in ASP.NET Core Applications
ASP.NET Core provides built-in caching components that help improve application performance by storing frequently accesssed data in memory. The caching infrastructure supports multiple storage backends including in-memory cache, Redis, and SQL Server. This guide focuses on implementing in-memory caching in your ASP.NET Core applications.
Settin ...
Posted on Fri, 08 May 2026 10:59:25 +0000 by surfer
Redis Fundamentals and Implementation Guide
Overview of Redis
Redis stands as an open-source, in-memory data structure store developed in C language. It serves as a database, cache, and message broker supporting multiple programming languages. This NoSQL database operates through key-value pairs stored in memory, delivering high-performance operations.
Core Characteristics
Speed: Operati ...
Posted on Thu, 07 May 2026 18:09:37 +0000 by eldorik
Redis Core Concepts: Data Structures, Persistence, and Clustering Strategies
Data Types and Internal Encodings
Redis distinguishes between external data types exposed to users and internal encoding mechanisms that optimize memory usage. Understanding these mappings helps in capacity planning and performance tuning.
String Implementation
Strings utilize Simple Dynamic Strings (SDS) rather than raw C strings. SDS maintain ...
Posted on Thu, 07 May 2026 11:58:00 +0000 by tylrwb