The file cache provider is used to cache rendered pages and resources as temporary files on disk. This can help
reducing the memory footprint of the application without sacrificing the performance significantly. It is necessary to configure
the Telerik Reporting Configuration Section first and then use the following XML snippet that
configures the viewers in the application to use the file cache provider:
CopyXML
<Telerik.Reporting>
<Cache provider="File" />
</Telerik.Reporting>
By default, this provider stores the files in the temporary folder of the current user. However it can be configured to store
the files in another location by specifying the "BasePath" parameter, as illustrated below:
CopyXML
<Telerik.Reporting>
<Cache provider="File">
<Providers>
<Provider name="File">
<Parameters>
<Parameter name="BasePath" value="C:\MyDataCache" />
</Parameters>
</Provider>
</Providers>
</Cache>
</Telerik.Reporting>The "BasePath" can represent either an absolute path on disk or a relative path. In the latter case the path is mapped to the
application’s working directory.
See Also