List of usage examples for org.apache.commons.jcs JCS getGroupCacheInstance
public static <K, V> GroupCacheAccess<K, V> getGroupCacheInstance(String region) throws CacheException
From source file:org.tinygroup.cache.jcs.JcsCache.java
public void init(String region) { try {/* w ww .ja va 2 s . co m*/ groupCacheAccess = JCS.getGroupCacheInstance(region); } catch (Exception e) { throw new CacheException(e); } }