Hi all, I was able to get my installation of Solr indexed using dataimport. However, I cannot seem to get search working. I can verify that the data is there by going to:
http://localhost:8983/solr/select/?q=*%3A*&version=2.2&start=0&rows=10&indent=on This gives me the response: <result name="response" numFound="234961" start="0"> But when I go to http://localhost:8983/solr/select/?q=dog&version=2.2&start=0&rows=10&indent=on I get the response: <result name="response" numFound="0" start="0"> I know that dog should return some results because it is the first result when I select all the records. So what am I doing incorrectly that would prevent me from seeing results?