Merge remote-tracking branch 'origin/v9/dev' into v9/cyclehack/autogeneration_of_json_schema

This commit is contained in:
Bjarke Berg
2021-06-25 08:18:39 +02:00
244 changed files with 6423 additions and 2210 deletions

View File

@@ -13,5 +13,15 @@ namespace Umbraco.Cms.Core.Configuration.Models
/// Gets or sets a value defining the BTree block size.
/// </summary>
public int? BTreeBlockSize { get; set; }
/// <summary>
/// The serializer type that nucache uses to persist documents in the database.
/// </summary>
public NuCacheSerializerType NuCacheSerializerType { get; set; } = NuCacheSerializerType.MessagePack;
/// <summary>
/// The paging size to use for nucache SQL queries.
/// </summary>
public int SqlPageSize { get; set; } = 1000;
}
}