Cache Settings
Information on the Cache settings section
HybridCacheOptions
MaximumPayLoadBytes
using Microsoft.Extensions.Caching.Hybrid;
using Umbraco.Cms.Core.Composing;
namespace MySite.Caching;
public class ConfigureCacheComposer : IComposer
{
public void Compose(IUmbracoBuilder builder)
{
builder.Services.AddOptions<HybridCacheOptions>().Configure(x =>
{
x.MaximumPayloadBytes = 1024 * 1024 * 10; // 10MB
});
}
}Seeding settings
ContentTypeKeys
DocumentBreadthFirstSeedCount and MediaBreadthFirstSeedCount
DocumentSeedBatchSize and MediaSeedBatchSize
Cache Entry settings
LocalCacheDuration
RemoteCacheDuration
SeedCacheDuration
NuCache Settings
UsePagedSqlQuery
SqlPageSize
NuCacheSerializerType
Last updated
Was this helpful?