Package org.apache.solr.search

Examples of org.apache.solr.search.LRUCache


    HashMap<String, String> argMap = new HashMap<String, String>();
    argMap.put("size", size);
    argMap.put("name", "solbaseCache");
   
    cache = new LRUCache();
    cache.init(argMap, null, null);
    cache.setState(State.LIVE);
    // register mbean here
    MBeanServer mbs = ManagementFactory.getPlatformMBeanServer();
      ObjectName objName;
View Full Code Here

TOP

Related Classes of org.apache.solr.search.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.