Using solr search when i search for rin* it run wildcard query and i get the result for ring but when i search for Rin* it run开发者_运维知识库 spellchecker and then gives the result for ring. why so ?? please explain
When using wildcard searches, the standard query tokenizer chain is bypassed by design.
To quote AnalyzersTokenizersTokenFilters
On wildcard and fuzzy searches, no text analysis is performed on the search word
精彩评论