Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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);

...