Infinispan Cache Container API: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 2: | Line 2: | ||
* [[Infinispan_Concepts#Cache_Container|Infinispan Concepts]] | * [[Infinispan_Concepts#Cache_Container|Infinispan Concepts]] | ||
=TODO= | |||
* http://infinispan.org/docs/8.0.x/user_guide/user_guide.html#configuring_cache | |||
=<tt>RemoteCacheManager</tt>= | =<tt>RemoteCacheManager</tt>= |
Latest revision as of 19:03, 4 May 2017
Internal
TODO
RemoteCacheManager
Configuration c = new ConfigurationBuilder().addServer().host(initialHost).port(port).build(); RemoteCacheManager rcm = new RemoteCacheManager(c);
EmbeddedCacheManager
EmbeddedCacheManager cm = new DefaultCacheManager( [...] );