Webiant Logo Webiant Logo
  1. No results found.

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

CacheConfig.cs

namespace Nop.Core.Configuration;

/// 
/// Represents cache configuration parameters
/// 
public partial class CacheConfig : IConfig
{
    /// 
    /// Gets or sets the default cache time in minutes
    /// 
    public int DefaultCacheTime { get; protected set; } = 60;

    /// 
    /// Gets or sets whether to disable linq2db query cache
    /// 
    public bool LinqDisableQueryCache { get; protected set; } = false;
}