log.info(" ... EntityCache deactivated");
documentCacheFactory = null;
} else {
int size = ecSize < 0 ? DEFAULT_ENTITY_CACHE_SIZE : ecSize;
log.info(" ... create EntityCache (size: {})",size);
documentCacheFactory = new FastLRUCacheManager(size);
}
//(7) parse the Entity type field
value = properties.get(IndexConfiguration.SOLR_TYPE_FIELD);
if(value == null || StringUtils.isBlank(value.toString())){