2020-12-06 10:46:04 +01:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Core.Configuration.Models
|
2020-03-16 14:02:08 +01:00
|
|
|
{
|
2020-12-06 10:46:04 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Typed configuration options for NuCache settings.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class NuCacheSettings
|
2020-03-16 14:02:08 +01:00
|
|
|
{
|
2020-12-06 10:46:04 +01:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value defining the BTree block size.
|
|
|
|
|
/// </summary>
|
2020-09-18 12:54:17 +02:00
|
|
|
public int? BTreeBlockSize { get; set; }
|
2020-03-16 14:02:08 +01:00
|
|
|
}
|
|
|
|
|
}
|