: However, the following query produces no hits, even though I know from the : facets info that there are over 4000 matches in the index: : : fl=*,score&start=0&q=division_t:"Accounting"&company_facet:"Deloitte+%26+Touche"&qt=standard&wt=ruby&rows=30
That's not a "legal" URL ... note the "...&company_facet...". You've specified a URL param named: 'company_facet:"Deloitte+%26+Touche"' which has no value. I think you ment to use... fl=*,score&start=0&q=division_t:"Accounting"&fq=company_facet:"Deloitte+%26+Touche"&qt=standard&wt=ruby&rows=30 : I was under the impression that Solr.StrField just indexes the literal : string, so I'm confused why this won't work. What's the proper way to feed the record: that is in fact exactly what StrField does. -Hoss