props.put(GCacheFactory.NAMESPACE, C_NAMESPACE);
// props.put(GCacheFactory.EXPIRATION_DELTA, C_TIMEOUT);
CacheManager cMan = CacheManager.getInstance();
props.put("name", C_NAME);
try{
CacheFactory cFac = cMan.getCacheFactory();
Cache cache = cFac.createCache(props);
cMan.registerCache(C_NAME, cache);
cache.put(C_KEY_RESULTS, new Results());
cache.put(C_KEY_SUMMARY, retrieveSummary());
}catch(CacheException e){