The problem was a wrong incrementToken-implementation. Now TermsComponent as well as Luke are showing expected responses for every field.
However: What could be wrong, when some terms of a field are not searchable? Here is my query: solr/select/?q=titleSemantic:Me Let me show you a response of TermsComponent: ------------------------------------------------ <response> − <lst name="responseHeader"> <int name="status">0</int> <int name="QTime">0</int> </lst> − <lst name="terms"> − <lst name="titleSemantic"> <int name="contemplat">1</int> <int name="me">1</int> <int name="snakes">1</int> <int name="te">1</int> <int name="your">1</int> </lst> </lst> </response> --------------------------------- The schema.xml: <field name="titleProcessed" type="Processed" indexed="true" stored="false"/> <field name="titleSynonyms" type="Synonym" indexed="true" stored="false"/> <field name="titleSemantic" type="Semantic" indexed="true" stored="false"/> <uniqueKey>ID</uniqueKey> <defaultSearchField>titleMain</defaultSearchField> --------------------------------- Thank you! It's the first time I am setting up a Solr-Server on my own - sorry, if some questions might be stupid ;). Kind regards - Mitch -- View this message in context: http://n3.nabble.com/Absolutely-empty-resultset-regardless-of-what-I-am-searching-for-tp683866p686081.html Sent from the Solr - User mailing list archive at Nabble.com.