Hoss, thank you for your response.
/select?q=*:* This returns results as expected. I have found the mistake, why introduction didn't match - a wrong copyfield. *rolleyes* However, this seems to bring more problems to the light: Now, the first few rows from my database seem to be searchable, but the rest is not searchable. The thing is, I have got two stored (as well as indexed) fields: ID and title. If I search for the ID of a document, which I can't find over its title, it produces a match. If I search for the title, it returns nothing. Is there any possibility to see, what is exactly indexed? Luke seems to response wrong results... since it says, that "life" is one of the most frequent terms (398 times) of my index, but if I search for "life" (sounds great, doesn't it?) it responses only ONE match. select/?q=titleProcessed:live&start=0&rows=10&indent=on Here is my schema.xml: Please, notice that I have done a modification: titleProcessed means the same as "title" from my first post. The mistake is NOT that title is now a string-type. <field name="title" type="string" indexed=true stored="true"/> <field name="synonymTitle" type="Synonym" indexed=true stored="false"/> <field name="titleProcessed" type="text" indexed=true stored="false"/> <copyField source="title" dest="titleProcessed"/> <copyField source="title" dest="titleSynonym"/> <copyField source="title" dest="titleProcessed"/> <fieldType name="Synonym" class = "solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.SynonymFilterFactory" synonyms="Synonyms.txt" ignoreCase="true" expand="true"/> <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="0" catenateNumbers="0" catenateAll="0" splitOnCaseChange="1"/> </analyzer> </fieldType> <fieldType name="text" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.WhitespaceTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> </analyzer> </fieldType> --------------- May there be a problem, because the fields are already tokenized??? Kind regards - Mitch -- View this message in context: http://n3.nabble.com/Absolutely-empty-resultset-regardless-of-what-I-am-searching-for-tp683866p684344.html Sent from the Solr - User mailing list archive at Nabble.com.