Package org.archive.access.nutch.jobs

Examples of org.archive.access.nutch.jobs.NutchwaxLinkDb


  protected void doInvert(final OutputDirectories od, final Path [] segments)
    throws IOException
  {
    createLinkdb(od);
     
    new NutchwaxLinkDb(getJobConf()).
      invert(od.getLinkDb(), segments, true, true, false);
  }
View Full Code Here


  protected void doInvert(final OutputDirectories od)
    throws IOException
  {
    LOG.info("inverting links in " + od.getSegments());

    new NutchwaxLinkDb(getJobConf()).
      invert(od.getLinkDb(), getSegments(od), true, true, false);
  }
View Full Code Here

TOP

Related Classes of org.archive.access.nutch.jobs.NutchwaxLinkDb

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.