My Solr-Server: http://www.captionsearch.de/solr.html
Everytime you make a new search you get the last response file here:
http://www.captionsearch.de/response.xml


2007/3/24, Chris Hostetter <[EMAIL PROTECTED]>:


: > Perhaps our use of ConstantScorePrefixQuery by default?
:
: Ah, that would probably explain it!   I had stumbled on this before
: too and went to fix it and saw the rewrite in there and was
: perplexed, but then got distracted by something shiny.

yeah, that makes sense ... a true wildcard query works fine...

http://localhost:8983/solr/select/?q=id:V???B*&fl=id&hl=true&hl.fl=id


To answer your question Krystian: it's suppose to work for you, for
fuzzy queries (like: dna~0.7) and wildcard queries (like: d?a) it
should currently be working fine ... pelase send us an example Solr URL
that doesn't work if it's not what you are observing.

Only a simple prefix query (like: dn*) doesn't work ... and that seems to
be because of the way we optimize a PrefixQuery into a
ConstantScorePrefixQuery .. a workarround is to allways include a "?" in
your query when you want highlighting -- so instead of dn* search for dn?*


-Hoss


Reply via email to