On 12 February 2014 20:57, leevduhl <ld...@corp.realcomp.com> wrote: [...] > However, when I try to search specifically where "mailingcity=redford" I > don't get any results back. See the following query/results. > > Query: > http://{domain}:8983/solr/MIM/select?q=mailingcity=redford&rows=2&fl=id,mailingcity&wt=json&indent=true&debugQuery=true
Please start by reading https://wiki.apache.org/solr/SolrQuerySyntax The argument to 'q' above should be mailingcity:redford. The debug section in the results even tells you that, as the parsedquery becomes "text:mailingcity text:redford" which means that it is searching the default full-text search field for the strings "mailingcity" and/or "redford". Regards, Gora