Thank you so much guys. You solved my problem :) :)
The problem was I was using stemming, I removed that it works perfectly now.
--
View this message in context:
http://lucene.472066.n3.nabble.com/Problem-with-Wildcard-searches-in-Solr-tp961448p963744.html
Sent from the Solr - User mailing lis
hi,
sorry realised i had a typo:
> of course, non of this is going to sort out trying to match against the query
> "co?mput?r" because you've probably stemmed "computer" to "comput" or
> something
> at index time -- but if you add in a copyfield to an extra field that
> isn't stemmed
> at query
Hi,
earlier this week i started messing with getting wildcard queries to
be analysed
i've got some weird analysers doing stemming/lowercasing and writing
in the same rules into a custom queryparser didn't seem logical given
i just want the analysers to apply as they do at index time
i ca
!
-Ursprüngliche Nachricht-
Von: imranak [mailto:imranak...@gmail.com]
Gesendet: Montag, 12. Juli 2010 23:55
An: solr-user@lucene.apache.org
Betreff: RE: Problem with Wildcard searches in Solr
Hi,
Thanks for you response. The dismax query parser doesn't support it but I heard
the edismax parser sup
On Mon, Jul 12, 2010 at 4:39 PM, imranak wrote:
> A general search like 'computer' returns results but 'com*er' doesn't return
> any results.
This is due to issues with wildcards and stemming.
"computer" is indexed and searched as "comput"... but it's not
generally possible to stem wildcarded ter
ubject: RE: Problem with Wildcard searches in Solr
Hi,
Thanks for you response. The dismax query parser doesn't support it but I
heard the edismax parser supports all kinds of wildcards. Been trying it out
but without any luck. Could someone please help me with that. I'm unable to
mak
Hi,
Thanks for you response. The dismax query parser doesn't support it but I
heard the edismax parser supports all kinds of wildcards. Been trying it out
but without any luck. Could someone please help me with that. I'm unable to
make leading and in-the-middle wildcard searches work.
Thanks.
I
Hi,
The DisMaxQParser does not support wildcards in its q parameter [1]. You must
use the LuceneQParser instead. AFAIK, in DisMax, wildcards are part of the
search query and may get filtered out in your query analyzer.
[1]: http://wiki.apache.org/solr/DisMaxRequestHandler#q
Cheers,