// something in the cache
cobj = cl.get(index); // we are using this whatever
Object newCobj = createCachePageObject(queryMap, response, request, mf);
cl.put(index, newCobj); // replaces existing value
if (cache.needsRefresh(true, cacheKey)) {
cache.put(cacheKey, cl, CacheFactory.getInstance().getCacheExpireInSeconds());
cache.doneRefresh(cacheKey, CacheFactory.getInstance().getCacheLockExpireInSeconds());
}
}