Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
409 views

Get stemmed word in Lucene

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 'body'. IndexSearcher ...
0
votes
1answer
165 views

Solr SnowballPorterFilterFactory filter provides incorrect sugestions

I use SnowballPorterFilterFactory for index and query analyzers. Search for "apple" word. Solr successfully finds necessary articles, but tels that the word was spelled incorrect and give suggestion: ...
0
votes
1answer
150 views

Using SnowBallAnalyzer with PyLucene

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 ...
0
votes
1answer
409 views

Exception when indexing text documents with Lucene, using SnowballAnalyzer for cleaning up

I am indexing the documents with Lucene and am trying to apply the SnowballAnalyzer for punctuation and stopword removal from text .. I keep getting the following error :( IllegalAccessError: tried ...
0
votes
1answer
335 views

What is the proper dependency entry in pom.xml to use the Snowball analyzer with Lucene 2.4.0?

I'm trying to swap in the SnowballAnalyzer for StandardAnalyzer on my Maven 2 project. I'm currently using <dependency> <groupId>org.apache.lucene</groupId> ...