I'm new to SOLR and trying to get a proper understanding of what's going on with fields, facets, and search results.
I've modified the example schema.xml and solrconfig.xml that comes with SOLR to reflect some fields I want to experiment with. I've also modified the velocity templates in Solaritas accordingly. I've created some sample <doc>s to post to the index that have the fields/data I want to experiment with. Everything "compiles" and works, but my search results are not what I expect and I'm trying to understand why. Every field I have is defined the same (here are two examples): <field name="title" type="text_general" indexed="true" stored="true" omitNorms="true"/> <field name="section_text_content" type="text_general" indexed="true" stored="true" omitNorms="true"/> The puzzle is that I'm getting search results on every term that's in the "title" field, but nothing on terms in the "section_text_content" field. I have no idea why. I thought at first it was because I'd specified the title field to also be a facet, but I removed that and things remain as described (except now, of course, the facet for "title" is gone). Can anyone provide some insight? Don -- View this message in context: http://lucene.472066.n3.nabble.com/Fields-Facets-and-Search-Results-tp3765946p3765946.html Sent from the Solr - User mailing list archive at Nabble.com.