Package org.teiid.core.util

Examples of org.teiid.core.util.LRUCache


  protected IndexSummary summary;

  public BlocksIndexInput(VirtualFile inputFile) {
    this.indexFile= inputFile;
    blockCache= new LRUCache(CACHE_SIZE);
  }
View Full Code Here


   
  /**
   * @see IndexInput#clearCache()
   */
  public void clearCache() {
    blockCache= new LRUCache(CACHE_SIZE);
  }
View Full Code Here

TOP

Related Classes of org.teiid.core.util.LRUCache

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.