Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

Now, how do I search my indexed data?

Wiki Markup
Option 1 \[cumbersome\]:

Add my own query plugin:

No Format

package com.swayam.nutch.plugins.queryfilter;
 
import org.apache.nutch.searcher.FieldQueryFilter;
 
/**
 *@author paawak
 */
public class MyEmailQueryFilter extends FieldQueryFilter {
 
    public MyEmailQueryFilter() {
        super("email");
    }
 
}

...

There is an easier and more elegant way.

Wiki Markup
Option 2 \[smart\]

Use the existing query-basic plugin.

...