Tech Tip: Clearing the Content from the Cache in VirtualViewer Java Content Server
Snowbound Software’s VirtualViewer Java Content Server includes the ability to clear the cache. You may want to clear the cache if a document saved in the cache is interfering with download time or performance.To clear the cache, set the clearCacheOnSave parameter to true in the UploadServer servlet section of your web.xml file. The web.xml file is a sample file that is supplied when the application is installed. It is located in the WEB-INF directory where your application files are installed.
Please see the following example showing how to set clearCacheOnSave parameter to true to clear the cache:
<init-param>
<param-name>clearCacheOnSave</param-name>
<param-value>true</param-value>
</init-param>

