Re: Is it possible to query for "everything" ?

2009-09-15 Thread Erik Hatcher
[* 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

Re: Is it possible to query for "everything" ?

2009-09-14 Thread Bill Au
For the standard query handler, try [* TO *]. Bill On Mon, Sep 14, 2009 at 8:46 PM, Jay Hill 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 > wrote: > > > Thanks Jay & Matt > > > > I

Re: Is it possible to query for "everything" ?

2009-09-14 Thread Jay Hill
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 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

Re: Is it possible to query for "everything" ?

2009-09-14 Thread Jonathan Vanasco
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 q

Re: Is it possible to query for "everything" ?

2009-09-14 Thread Jay Hill
Use: ?q=*:* -Jay http://www.lucidimagination.com On Mon, Sep 14, 2009 at 4:18 PM, Jonathan Vanasco wrote: > I'm using Solr for seach and faceted browsing > > Is it possible to have solr search for 'everything' , at least as far as q > is concerned ? > > The request handlers I've found don't li

Re: Is it possible to query for "everything" ?

2009-09-14 Thread Matt Weber
Query for *:* Thanks, Matt Weber On Sep 14, 2009, at 4:18 PM, Jonathan Vanasco wrote: I'm using Solr for seach and faceted browsing Is it possible to have solr search for 'everything' , at least as far as q is concerned ? The request handlers I've found don't like it if I don't pass in a

Is it possible to query for "everything" ?

2009-09-14 Thread Jonathan Vanasco
I'm using Solr for seach and faceted browsing Is it possible to have solr search for 'everything' , at least as far as q is concerned ? The request handlers I've found don't like it if I don't pass in a q parameter