Obtain references to cache instances

WARNING - TOPIC NOT WRITTEN - TOPIC ID: 1501

This topic has not yet been written. The content below is from the topic description.
Once configuration file is read you can obtain reference to the default cache instance.     CacheManager manager = new DefaultCacheManager("my-config-file.xml"); Cache defaultCache = manager.getCache();     or any other named instance specified in "my-config-file.xml".   Cache someNamedCache = manager.getCache("someNamedCache");     Every time you define element in XML configuration file, in addition to cache element, you are effectively configuring additional caches whose settings are inheriting and/or overriding the default cache.