If you use "*" you use Multiterm analysis path, which is semi-hidden and is a lot more limited to the things done with normal tokens: https://wiki.apache.org/solr/MultitermQueryAnalysis
The Analyzer components that are NOT multiterm aware cannot be used that way. Looking at: http://www.solr-start.com/info/analyzers/ , you can see that only LowerCase analyzer is multiterm aware (with (multi) in the brackets). So, the rest are not used. You may switch to EdgeNGrams or similar instead. Regards, Alex. Personal: http://www.outerthoughts.com/ and @arafalov Solr resources and newsletter: http://www.solr-start.com/ and @solrstart Solr popularizers community: https://www.linkedin.com/groups?gid=6713853 On 1 October 2014 13:10, waynemailinglist <waynemailingli...@gmail.com> wrote: > I'm still stuck on this actually. I would really appreciate any pointers. > If I search for : > query 1: Κώστας > result: Κώστας > > query 2: Κώστα* > result: <no result> > > I've looked at the analyser but I don't really understand what I'm looking > at if I'm honest. It gives the output: > Field (name): title > Field value: Κώστας > Field value (query): Κώστα* > > Index Analyzer > Κώστας > Κώστας > Κώστας > κώστας > κώστας > Query Analyzer > Κώστα* > Κώστα* > Κώστα* > Κώστα > κώστα > κώστα > > > In my schema I have defined > <tokenizer class="solr.WhitespaceTokenizerFactory"/> > <filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" > ignoreCase="true" expand="true"/> (only used in query) > <filter class="solr.StopFilterFactory" ignoreCase="true" > words="stopwords.txt"/> > <filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" > generateNumberParts="1" catenateWords="0" catenateNumbers="0" > catenateAll="0"/> > <filter class="solr.LowerCaseFilterFactory"/> > <filter class="solr.RemoveDuplicatesTokenFilterFactory"/> > > > I tried adding ASCIIFoldingFilterFactory but that didm;t make any difference > after reindexing. > > Any ideas? > > many thanks > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Wildcard-search-makes-no-sense-tp4162069p4162150.html > Sent from the Solr - User mailing list archive at Nabble.com.