Hello, Is it possible to do a text search within facets? Something that will return me what words solr used to gather my results and how many of those results were found.
For example, if I have the following field: <field name="dog" type="string" indexed="true" stored="true"/> and it has docs that contain something like <str name="dog">english bulldog</str> <str name="dog">french bulldog</str> <str name="dog">bichon frise</str> If I search for "english bulldog" and facet on "dog", I will get the following: <int name="english bulldog">135</int> <int name="french bulldog">23</int> <int name="bichon frise">12</int> But I really want only the ones that contain the words "english" and "bulldog" like <int name="english bulldog">135</int> <int name="french bulldog">23</int> Thanks for your help! -- View this message in context: http://old.nabble.com/Text-search-within-facets--tp27560090p27560090.html Sent from the Solr - User mailing list archive at Nabble.com.