Following up with my earlier post --

Finally done with the last few changes related with the new caching policies (FIFO, LFU). A new attribute memoryStorePolicy is being added to the cache element in the configuration file:


<cache name="sampleCache1" maxelementsinmemory="10000" eternal="false" overflowtodisk="true" timetoidleseconds="300" timetoliveseconds="600" memorystorepolicy="LFU"/>

memoryStorePolicy attribute is an optional element. Legal values are: LRU, LFU and FIFO. The value defaults to LRU (Least Recently Used) policy.

Next I should update the site documentation for the caching policies ..