In Lucene I use the SnowballAnalyzer for indexing and searching.
When I have the index built I make queries on my index. For example I make a query 'specialized' for the field ...
I'm trying to use SnowBallAnalyzer in PyLucene but I always get an error saying: InvalidArgsError when I try to create an instance of it like this:
analyzer = SnowBallAnalyzer("Spanish")
or
analyzer = SnowBallAnalyzer("Spanish", STOPWORDS)
What ...