OSCache packages

http://www.opensymphony.com/oscache/api/


com.opensymphony.oscache.base
Classes
AbstractCacheAdministrator
Cache
CacheEntry
Config
EntryUpdateState

com.opensymphony.oscache.base.algorithm
Classes
AbstractConcurrentReadCache
AbstractConcurrentReadCache.Entry
FIFOCache
LRUCache
UnlimitedCache


com.opensymphony.oscache.base.events
Interfaces
CacheEntryEventListener
CacheEventListener
CacheMapAccessEventListener
ScopeEventListener
Classes
CacheEntryEvent
CacheEntryEventType
CacheEvent
CacheGroupEvent
CacheMapAccessEvent
CacheMapAccessEventType
CachePatternEvent
CachewideEvent
CachewideEventType
ScopeEvent
ScopeEventType

com.opensymphony.oscache.base.persistence
com.opensymphony.oscache.extra
com.opensymphony.oscache.general
Classes
GeneralCacheAdministrator

com.opensymphony.oscache.hibernate
com.opensymphony.oscache.plugins.clustersupport
com.opensymphony.oscache.plugins.diskpersistence
com.opensymphony.oscache.util
com.opensymphony.oscache.web
com.opensymphony.oscache.web.filter
Interfaces
ICacheGroupsProvider
ICacheKeyProvider
Classes
CacheFilter
CacheHttpServletResponseWrapper
ExpiresRefreshPolicy
ResponseContent
SplitServletOutputStream

com.opensymphony.oscache.web.tag
Classes
CacheTag
<%@ taglib uri="oscache" prefix="cache" %>
     <cache:cache key="mycache"
                 scope="application"
                 refresh="false"
                 time="30">
              jsp content here... refreshed every 30 seconds
     </cache:cache>

FlushTag
FlushTag flushes caches created with <cache>. This tag provides programmatic control over when caches are flushed, and can flush all caches at once.

Usage Examples:


<%@ taglib uri="oscache" prefix="cache" %>
<cache:flush scope="application" />
<cache:flush scope="session" key="foobar" />

GroupsTag
GroupTag
UseCachedTag
UseCachedTag is a tag that tells a <cache> tag to reuse the cached body.

Usage Example:
       <%@ taglib uri="oscache" prefix="cache" %>
       <cache:cache key="mycache" scope="application">
                if (reuse cached)
                        <cache:usecached />
                else
                        some other logic
       </cache:cache>

你可能感兴趣的:(package)