|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CachePersistenceException | |
---|---|
com.opensymphony.oscache.base.persistence | Provides the interfaces that provide persistence storage of cached objects. |
com.opensymphony.oscache.plugins.diskpersistence | Provides support for persisting cached objects to disk. |
Uses of CachePersistenceException in com.opensymphony.oscache.base.persistence |
---|
Methods in com.opensymphony.oscache.base.persistence that throw CachePersistenceException | |
---|---|
void |
PersistenceListener.clear()
Clear the entire persistent cache (including the root) |
boolean |
PersistenceListener.isGroupStored(String groupName)
Verify if a group is currently stored in the persistent cache. |
boolean |
PersistenceListener.isStored(String key)
Verify if an object is currently stored in the persistent cache. |
void |
PersistenceListener.remove(String key)
Removes an object from the persistent cache |
void |
PersistenceListener.removeGroup(String groupName)
Removes a group from the persistent cache. |
Object |
PersistenceListener.retrieve(String key)
Retrieves an object from the persistent cache. |
Set |
PersistenceListener.retrieveGroup(String groupName)
Retrieves a group from the persistent cache. |
void |
PersistenceListener.store(String key,
Object obj)
Stores an object in the persistent cache. |
void |
PersistenceListener.storeGroup(String groupName,
Set group)
Stores a group in the persistent cache. |
Uses of CachePersistenceException in com.opensymphony.oscache.plugins.diskpersistence |
---|
Methods in com.opensymphony.oscache.plugins.diskpersistence that throw CachePersistenceException | |
---|---|
void |
AbstractDiskPersistenceListener.clear()
Clears the whole cache directory, starting from the root |
private void |
AbstractDiskPersistenceListener.clear(String baseDirName)
Clears a whole directory, starting from the specified directory |
boolean |
AbstractDiskPersistenceListener.isGroupStored(String group)
Verify if a group exists in the cache |
boolean |
AbstractDiskPersistenceListener.isStored(String key)
Verify if an object is currently stored in the cache |
protected void |
AbstractDiskPersistenceListener.remove(File file)
|
void |
AbstractDiskPersistenceListener.remove(String key)
Delete a single cache entry. |
void |
AbstractDiskPersistenceListener.removeGroup(String groupName)
Deletes an entire group from the cache. |
private Object |
AbstractDiskPersistenceListener.retrieve(File file)
Retrives a serialized object from the supplied file, or returns null if the file does not exist. |
Object |
AbstractDiskPersistenceListener.retrieve(String key)
Retrieve an object from the disk |
Set |
AbstractDiskPersistenceListener.retrieveGroup(String groupName)
Retrieves a group from the cache, or null if the group
file could not be found. |
protected void |
AbstractDiskPersistenceListener.store(File file,
Object obj)
Stores an object using the supplied file object |
void |
AbstractDiskPersistenceListener.store(String key,
Object obj)
Stores an object in cache |
void |
AbstractDiskPersistenceListener.storeGroup(String groupName,
Set group)
Stores a group in the persistent cache. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |