Package org.nemesis.forum.util

Examples of org.nemesis.forum.util.LinkedList


  public Cache() {
    //Our primary data structure is a hash map. The default capacity of 11
    //is too small in almost all cases, so we set it bigger.
    cachedObjectsHash = new HashMap(103);

    lastAccessedList = new LinkedList();
    ageList = new LinkedList();
  }
View Full Code Here


    //Now, reset all containers.
    cachedObjectsHash.clear();
    cachedObjectsHash = new HashMap(103);
    lastAccessedList.clear();
    lastAccessedList = new LinkedList();
    ageList.clear();
    ageList = new LinkedList();

    size = 0;
    cacheHits = 0;
    cacheMisses = 0;
  }
View Full Code Here

TOP

Related Classes of org.nemesis.forum.util.LinkedList

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.