Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

SynchronizedMemoryCacheManager.cs

using Nop.Core.Configuration;

namespace Nop.Core.Caching;

/// 
/// Represents a memory cache manager with distributed synchronization
/// 
/// 
/// This class should be registered on IoC as singleton instance
/// 
public partial class SynchronizedMemoryCacheManager : MemoryCacheManager
{
    public SynchronizedMemoryCacheManager(AppSettings appSettings,
        ISynchronizedMemoryCache memoryCache,
        ICacheKeyManager cacheKeyManager) : base(appSettings, memoryCache, cacheKeyManager)
    {
    }
}