I'm trying to index a field in a way that allows me to find the document using prefix query 'æb*' as well as 'aeb*'. What happens: it finds the latter, but not the former. Same issue with å, î, etc.
This is my schema:
<fieldtype name="text" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<charFilter class="solr.MappingCharFilterFactory" mapping="mapping-ISOLatin1Accent.txt"/>
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.StandardFilterFactory"/>
<filter class="solr.LowerCaseFilterFactory"/>
</analyzer>
</fieldtype>
As you can see I'm using the same analyzers for index and query. So If I understand correctly, the query 'æb*' should get normalized to 'aeb*'. Is the '*' symbol somehow interfering? How can I set up my schema for the desired results?
I'm using Solr 1.4.1.