Package jodd.cache

Examples of jodd.cache.FileLFUCache


  int maxFileSize;
  protected FileLFUCache fileLRUCache;

  @PetiteInitMethod
  public void init() {
    fileLRUCache = new FileLFUCache(size, maxFileSize);
    if (log.isDebugEnabled()) {
      log.debug("FileLRUCache created: " + size + ", " + maxFileSize);
    }
  }
View Full Code Here

TOP

Related Classes of jodd.cache.FileLFUCache

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.