Hello,
maybe I have found a little lucene problem: Wildcard queries are not analyzed correctly. I'm using the german analyzer with the 'GermanDIN2Stemmer'.
In the lucene-index my name('Björn') is stored as 'bjorn'. If I performe a wildcard query like 'björ*' the function 'GetPrefixQuery' does not analyze the search term. So the query result is 'björ*' instead of 'bjor*'. (björ* = no match, bjor* = match)
Thank You Björn
