Package de.fzi.herakles.commons.cache

Examples of de.fzi.herakles.commons.cache.FIFOCache


      logger.info("Cache " + (enableCache ? "enabled (size=" + cacheSize + ")" : "disabled") + "." );
    }
   
    // create the cache
    source = new QueryDataSource( this.executionStrategy, this.manager );
    cache = new FIFOCache( source, cacheSize );
    //cache = new LRUCache(source, cacheSize);
   
    // get the configuration of time measure
    isRecordTime = Boolean.parseBoolean(property.getProperty("timeMeasure", "" + isRecordTime))
  }
View Full Code Here

TOP

Related Classes of de.fzi.herakles.commons.cache.FIFOCache

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.