Re: Solr - search queries not returning results

2011-06-29 Thread Walter Closenfleight
Thanks to both of you, I understand now and am now getting the expected results. Cheers! On Wed, Jun 29, 2011 at 2:21 AM, Ahmet Arslan wrote: > > > I believe I am missing something very elementary. The > > following query > > returns zero hits: > > > > http://localhost:8983/solr/core0/select/?q

Re: Solr - search queries not returning results

2011-06-29 Thread Ahmet Arslan
> I believe I am missing something very elementary. The > following query > returns zero hits: > > http://localhost:8983/solr/core0/select/?q=testabc With this URL, you are hitting the RequestHandler defined as in your core0/conf/solrconfig.xml. > However, using solritas, it finds many results

Re: Solr - search queries not returning results

2011-06-28 Thread Tomás Fernández Löbbe
Hi Walter, probably solritas is using Dismax with a set of fields on the "qf" parameter, while with your first query, you are just querying to the default field. On Tue, Jun 28, 2011 at 5:07 PM, Walter Closenfleight < walter.p.closenflei...@gmail.com> wrote: > Hello everyone, > > I believe I am

Solr - search queries not returning results

2011-06-28 Thread Walter Closenfleight
Hello everyone, I believe I am missing something very elementary. The following query returns zero hits: http://localhost:8983/solr/core0/select/?q=testabc However, using solritas, it finds many results: http://localhost:8983/solr/core0/itas?q=testabc Do you have any idea what the issue may be