Re: Unable to match partial word

2013-03-05 Thread Jack Krupansky
You could also consider using EdgeNGramFilterFactory at index time, which can index all or some of the prefixes for each term, so that a query of "prod" would find "product", "production", etc. See: http://lucene.apache.org/core/4_1_0/analyzers-common/org/apache/lucene/analysis/ngram/EdgeNGramF

RE: Unable to match partial word

2013-03-05 Thread Van Tassell, Kristian
Thank you! -Original Message- From: Walter Underwood [mailto:wun...@wunderwood.org] Sent: Tuesday, March 05, 2013 11:22 AM To: solr-user@lucene.apache.org Subject: Re: Unable to match partial word Your assumption is wrong. Solr and Lucene match entire words. You can use wildcards, but

Re: Unable to match partial word

2013-03-05 Thread Walter Underwood
Your assumption is wrong. Solr and Lucene match entire words. You can use wildcards, but you need to be aware of the performance issues. If there words are related parts of speech, like singular and plural, you can use a stemmer to index a root form. You can also configure synonyms at index tim