I don't use the Solr admin interface , but I'd guess it's ending up
querying a field you haven't actually added any terms to. What Solr
query is generated by your admin query? (What URL is in your browser
after you do your admin query?). A "*:*" query is going to end up being
to a specific field -- either specified in the URL, or a default field
specified in your solrconfig.xml for the particular solr request handler
you're using -- the solr request handler can also be specified in the
Solr request URL, or else a default request handler is used. That's
assuming a request handler using the 'lucene' query parser; if you're
using a request handler with the 'dismax' query parser, then there are
other considerations (and "*:*" may not be a valid query).
Hope this helps. Since at the moment you're dealing purely with Solr,
you could also ask on the solr-user listserv, but I believe several of
us are happy to help you here as well.
Jonathan
To eliminate the query parser confusion from the equation, you can try /select?q={!lucene}*:* to see if that helps, though it's probably simply a commit issue.
Erik
> --
> You received this message because you are subscribed to the Google Groups "Blacklight Development" group.
> To post to this group, send email to blacklight-...@googlegroups.com.
> To unsubscribe from this group, send email to blacklight-develo...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/blacklight-development?hl=en.
>
Erik
Yes, the empty query will return all documents because it defaults to dismax *:*, which returns all documents.
- Naomi