15 lines
382 B
C#
15 lines
382 B
C#
using System.Configuration;
|
|
using Umbraco.Core.Configuration;
|
|
|
|
namespace Umbraco.Configuration
|
|
{
|
|
public class NuCacheSettings : INuCacheSettings
|
|
{
|
|
public NuCacheSettings()
|
|
{
|
|
BTreeBlockSize = ConfigurationManager.AppSettings["Umbraco.Web.PublishedCache.NuCache.BTree.BlockSize"];
|
|
}
|
|
public string BTreeBlockSize { get; }
|
|
}
|
|
}
|