: : 2) although I set editing distance to 1 in my query (e.g. worde~1), solr : returns me results having 2 editing distance (like WORDOES, WORHEE, WORKEE, : .. ect. )
fuzzy search works on *terms* in your index -- if you use a stemme when you index your data (your schema shows that you are) then a word in your input like "WORDOES" might wind up in your index as a term within the edit distance you specified (ie: "wordo" or "word" or something similar) : 3) Last and major issue, I had very few data at startup in my solr core (say : around 1K - 2K ), at that time, when i was searching with worde~1 , it was : returning many records (around 450). : : Then I ingested few more records in my solr core (say around 1K). It was : ingested successfully , no errors or warning in Log. After that when I : performed the same fuzzy search (worde~1) on previous records only, not in : new ingested records , It did not return me previous results(around 450) as : well, and return total 1 record only having highlight as WORD!N . This sounds like the same issue as discribed in SOLR-4824... https://issues.apache.org/jira/browse/SOLR-4824 -Hoss