Page File Cache
bean id: PageFileCache
Description
Provides a caching mechanism for the ../PageManager.
Default Configuration
The default implemetation of the PageFileCache uses a java.util.HashMap to hold cached pages. The configuration requires a check interval and an initial cache size.
<bean id="PageFileCache" class="org.apache.jetspeed.cache.file.FileCache" > <!-- Scan rate for changes in cached files on the file system --> <constructor-arg index="0"><value>120</value></constructor-arg> <!-- Cache size --> <constructor-arg index="1"><value>100</value></constructor-arg> </bean>