private org.jboss.cache.Cache cache;
public void start() throws Exception {
Context ctx = new InitialContext();
cacheManager = (CacheManager) ctx.lookup("java:CacheManager");
cache = cacheManager.getCache("riftsaw-cache", true);
cache.start();
}
public <K, V> Cache<K, V> createCache() {