Back to Website
Show / Hide Table of Contents

FileCache.config

  • Less than a minute to read

The ~/Configuration/FileCache.config file allows you to configure the cache of Customer's Canvas.

The following snippet shows parameters of the Customer's Canvas cache, which you can set up in either the Aurigma.DesignAtoms.FileCacheConfiguration section of Web.config or the separate ~/Configuration/FileCache.config file, with their default values.

<Aurigma.DesignAtoms.FileCacheConfiguration>
    <add key="MaxSize" value="4294967296" />
    <add key="CleanUpInterval" value="1800" />
    <add key="MaxUtilizationThreshold" value="95" />
    <add key="UtilizationTarget" value="70" />
    <add key="RootPath" value="~/App_Data/FileCache" />
</Aurigma.DesignAtoms.FileCacheConfiguration>

Let's look at these parameters in more detail.

Name Description Possible values
MaxSize The maximum size of the cache, in bytes. The default value is 4294967296 (4GB). number
CleanUpInterval The interval between cleanup runs, in seconds. The default value is 1800 (30 minutes). number
MaxUtilizationThreshold The maximum cache utilization level (in percent) that triggers automatic cleanup. When the cache size reaches MaxUtilizationThreshold, the cleanup process starts. The default value is 95. number
UtilizationTarget The utilization level (in percent) to which the cache should be cleaned up. When the cleanup algorithm reaches the UtilizationTarget level, the cleanup process stops. The default value is 70. number
RootPath The folder path where the cache is stored. The default value is ~/App_Data/FileCache. folder path

For more details, refer to Design Editor caching strategies.

Was this page helpful?
Thanks for your feedback!
Back to top Copyright © 2001–2025 Aurigma, Inc. All rights reserved.
Loading...
    Thank for your vote
    Your opinion is important to us. To provide details, send feedback.
    Send feedback