Where is the ChainedFilter class in Lucene.NET 3.0.3?

This was in Lucene.Net.Analyzers.dll in version 2.9.4. But I can not find this class in version 3.0.3.

+5
source share
3 answers

Mindas: here is my comment, since I cannot add a normal comment: how to access this ChainedFilter class? I downloaded the package, but there is no namespace like Lucene.Net.Contrib, or there is no other namespace that allows me to reach the ChainedFilter class. It seems stupid, but I'm stuck!

UPDATE: There is an error in the binaries from Nuget, as well as the zip files uploaded to the Apache website for Lucene.net. I downloaded the source and noticed that the ChainedFilter.cs class is present in the Apache-Lucene.Net-3.0.3-RC2.src \ src \ contrib \ Analyzers \ Filters folder, but this folder is surprisingly not part of Contrib. Analyzers. This is why it was missing from the generated binaries.

+3
source

To paraphrase this answer , you can either build it yourself, or use Nuget to get binary files.

http://nuget.org/packages/Lucene.Net.Contrib/

ChainedFilter must be in contrib / misc.

+2
source

, org.apache.lucene.misc.ChainedFilter Lucene 3.x.

0

All Articles