Package org.apache.stanbol.enhancer.engines.lucenefstlinking.cache

Examples of org.apache.stanbol.enhancer.engines.lucenefstlinking.cache.FastLRUCacheManager


            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())){
View Full Code Here

TOP

Related Classes of org.apache.stanbol.enhancer.engines.lucenefstlinking.cache.FastLRUCacheManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.