Hello,
I want the equivalent of the toolkit's ClusteredMap but using Ehcache (since Ehcache is more friendly when supporting serializable keys (and the latter also has local key caching). I came up with:
Code:
CacheConfiguration cfg = new CacheConfiguration(name, 100).eternal(true).terracotta(new TerracottaConfiguration()).pinning(new PinningConfiguration().store(Store.INCACHE));
Have I overlooked something?
Thanks
Nicolas