[* TO *] on the standard handler is an implicit query of
default_field_name:[* TO *] which matches only documents that have the
default field on them. So [* TO *] and *:* are two very different
queries, only the latter guaranteed to match all documents.
Erik
On Sep 14, 2009, at 9:39 PM, Bill Au wrote:
For the standard query handler, try [* TO *].
Bill
On Mon, Sep 14, 2009 at 8:46 PM, Jay Hill <jayallenh...@gmail.com>
wrote:
With dismax you can use q.alt when the q param is missing:
q.alt=*:*
should work.
-Jay
On Mon, Sep 14, 2009 at 5:38 PM, Jonathan Vanasco <jvana...@2xlp.com>
wrote:
Thanks Jay & Matt
I tried *:* on my app, and it didn't work
I tried it on the solr admin, and it did
I checked the solr config file, and realized that it works on
standard,
but
not on dismax, queries
So i have my app checking *:* on a standard qt, and then filtering
what I
need on other qts!
I would never have figured this out without you two!