> I am getting a problem when using an analyzer that
> uses the PorterStemFilter with queries that have terms
> in them.  I am using Lucene 1.0, with the small porter
> stemmer fix.

[ Tal; This question needs to go into the FAQ ]

You must use the same analyzer to index the documents as you do to
process the queries.  Otherwise, the terms won't match.  So if you didn't
use the stemmer when building the index base, you can't use it for the
queries, and if you did use it, you have to use it for the queries.

_______________________________________________
Lucene-users mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/lucene-users

Reply via email to