Hi, I have the following field defined in my schema:
<fieldType name="name_field" class="solr.StrField" positionIncrementGap="100" omitNorms="false"> <analyzer> <tokenizer class="solr.KeywordTokenizerFactory"/> <filter class="solr.StandardFilterFactory"/> <filter class="solr.ISOLatin1AccentFilterFactory" /> <filter class="solr.LowerCaseFilterFactory" /> <filter class="solr.TrimFilterFactory" /> </analyzer> </fieldType> <field name="name_de" type="name_field" indexed="true" stored="true" /> The field contains the value "Das Urteil" which is thus stored as "das urteil" The following query (using Solr 1.4) returns nothing name_de:das urteil But when I run the query name_de:"das urteil" the expected document is found. When I check this through the "Analysis" page of the solr admin it does show me a match for the first query. I'm sure I'm missing something obvious. But what? Regards Thomas