Re: wildcards, stemming and searching

2005-02-10 Thread Erik Hatcher
How would you deal with a query like a*z though? I suspect, however, that you only care about suffix queries and stemming those. If thats the case, then you could subclass getWildcardQuery and do internal stemming (remove trailing wildcard, run it through the analyzer directly there and return

Re: wildcards, stemming and searching

2005-02-10 Thread aaz
lucene-user@jakarta.apache.org Sent: Thursday, February 10, 2005 8:55 AM Subject: Re: wildcards, stemming and searching How would you deal with a query like a*z though? I suspect, however, that you only care about suffix queries and stemming those. If thats the case, then you could subclass

wildcards, stemming and searching

2005-02-09 Thread aaz
Hi, We are not using QueryParser and have some custom Query construction. We have an index that indexes various documents. Each document is Analyzed and indexed via StandardTokenizer() -StandardFilter() - LowercaseFilter() - StopFilter() - PorterStemFilter() We also want to support wildcard