...
Putting items in the cache:
* Note: All objects in the cache must implement and be serializable. Otherwise errors will occur when ehcache attempts to store cached items to disk.
Code Block |
---|
Object myObject = getMyObject(); cacheMgr.putInRegionCache("your_plugin_cache", "cache_item_1", myObject); |
...