File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
src/Umbraco.Core/Configuration/Models Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 4
4
namespace Umbraco . Cms . Core . Configuration . Models ;
5
5
6
6
/// <summary>
7
- /// The serializer type that nucache uses to persist documents in the database.
7
+ /// The serializer type that the published content cache uses to persist documents in the database.
8
8
/// </summary>
9
9
public enum NuCacheSerializerType
10
10
{
11
- MessagePack = 1 , // Default
11
+ /// <summary>
12
+ /// The default serializer type, which uses MessagePack for serialization.
13
+ /// </summary>
14
+ MessagePack = 1 ,
15
+
16
+ /// <summary>
17
+ /// The legacy JSON serializer type, which uses JSON for serialization.
18
+ /// </summary>
19
+ /// <remarks>
20
+ /// This option was provided for backward compatibility for the Umbraco cache implementation used from Umbraco 8 to 14 (NuCache).
21
+ /// It is no longer supported with the cache implementation from Umbraco 15 based on .NET's Hybrid cache.
22
+ /// Use the faster and more compact <see cref="MessagePack"/> instead.
23
+ /// The option is kept available only for a more readable format suitable for testing purposes.
24
+ /// </remarks>
12
25
JSON = 2 ,
13
26
}
You can’t perform that action at this time.
0 commit comments