if ("railo.extension.io.cache.eh.EHCacheLite".equals(clazzName))
cacheClazz = EHCacheLite.class;
else
cacheClazz = ClassUtil.loadClass(config.getClassLoader(), clazzName);
cc = new CacheConnectionImpl(config, name, cacheClazz, toStruct(eConnection.getAttribute("custom")), Caster.toBooleanValue(
eConnection.getAttribute("read-only"), false), Caster.toBooleanValue(eConnection.getAttribute("storage"), false));
if (!StringUtil.isEmpty(name)) {
caches.put(name.toLowerCase(), cc);
}
else