Package org.archive.crawler.util

Examples of org.archive.crawler.util.TopNSet


        boolean isRecover = (recoveryCheckpoint != null);
        try {
            this.processedSeedsRecords = bdb.getObjectCache("processedSeedsRecords",
                    isRecover, SeedRecord.class);
           
            this.hostsDistributionTop = new TopNSet(getLiveHostReportSize());
            this.hostsBytesTop = new TopNSet(getLiveHostReportSize());
            this.hostsLastFinishedTop = new TopNSet(getLiveHostReportSize());
           
            if(isRecover) {
                JSONObject json = recoveryCheckpoint.loadJson(beanName);
               
                crawlStartTime = json.getLong("crawlStartTime");
View Full Code Here

TOP

Related Classes of org.archive.crawler.util.TopNSet

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.