🤖
REN (Regular Everyday Normal) Helper
CtrlK
  • 🚨 DEPRECATION NOTICE 🚨
  • Welcome to REN (Regular Everyday Normal) Helper
    • Version Notes
  • REN.DataAccessHelpers
    • Database Helpers
      • Database Setup for .NET Projects
      • REN Unit Of Work Helper
        • Standard Implementation of REN Unit Of Work
          • Transactions
        • Custom Implementation of REN Unit Of Work
          • Overriding Existing Methods
          • Implementing Additional Methods
          • Using Both
      • REN Repository Helper
        • Standard Implementation of REN Repository
        • Usage of Parameters
        • Custom Implementation of REN Repository
          • Overriding Existing Methods
          • Implementing Additional Methods
          • Using Both
  • Cache Helpers
    • Cache Setup for .NET Projects
    • REN Cache Helper
      • REN In Memory Cache Service
        • Standard Implementation of REN In Memory Cache Service
        • Custom Implementation Of REN In Memory Cache Service
          • Overriding Existing Methods
          • Implementing Additional Methods
          • Using Both
      • REN Redis Cache Service
        • Standard Implementation of REN Redis Cache Service
        • Custom Implementation Of REN Redis Cache Service
          • Overriding Existing Methods
          • Implementing Additional Methods
          • Using Both
Powered by GitBook
On this page
  1. Cache Helpers
  2. REN Cache Helper

REN In Memory Cache Service

To use In Memory Cache, please make sure your appsettings.json content be as follows

"CacheConfiguration": {
  "InMemoryConfiguration": {
    "TimeConfiguration": {
      "AbsoluteExpirationInHours": 12,
      "SlidingExpirationInMinutes": 30
    }
  }
}
PreviousREN Cache HelperNextStandard Implementation of REN In Memory Cache Service

Last updated 1 year ago