Adds MessagePack serialization for nucache

This commit is contained in:
Shannon
2020-07-03 12:11:05 +10:00
parent e2ab2d2798
commit c63bfb866b
8 changed files with 215 additions and 31 deletions

View File

@@ -11,7 +11,8 @@ namespace Umbraco.Web.PublishedCache.NuCache
base.Compose(composition);
// register the NuCache NestedContentData serializer
composition.Register<IContentNestedDataSerializer, JsonContentNestedDataSerializer>();
//composition.Register<IContentNestedDataSerializer, JsonContentNestedDataSerializer>();
composition.Register<IContentNestedDataSerializer, MsgPackContentNestedDataSerializer>();
// register the NuCache database data source
composition.Register<IDataSource, DatabaseDataSource>();