On Wed, Aug 25, 2010 at 11:29:54AM -0400, Roger Marin wrote:
> I implemented a plugin to change the default nutch analyzer to use the
> snowball analyzer since I need stemming support, based on the french
>
> [Query] doesn't seem to be picking up the analyzer from the plugin,
You should write your own QueryFilter that uses the same analyzer you
use for indexing and define it in your plugin.xml file.
<plugin>
<extension id="...
name="...
point="org.apache.nutch.searcher.QueryFilter">
<implementation id="YourQueryFilter"
class="your.package.name.YourQueryFilter">
</implementation>
</extension>
</plugin>