org.continuent.sequoia.controller.cache.result.rules |
Rules to apply to the parsed request for the cache.
NoCaching blocks request from beeing cached,
EagerCaching force the cache to be coherent with the database
RelaxedCaching allow a time delay between the cache and the actual value from the database
|
Java Source File Name | Type | Comment |
EagerCaching.java | Class | EagerCaching means that all entries in the cache are always coherent and any
update query (insert,delete,update,...) will automatically invalidate the
corresponding entry in the cache. |
NoCaching.java | Class | |
RelaxedCaching.java | Class | RelaxedCaching means we set a timeout value for this entry, and when expired
we keep in the cache if no write has modified the corresponding result, we
wait for the same amount of time again. |