I am aware of possible usage of Lucene and Solr, but is there any simple Java library that is just doing the fuzzy full text search part like e.g.:
SomeScore score = fuzzyFullTextSearch(String text, String searchTerm, int maxDistance)
where ''score'' determines the measure, how frequent the (fuzzy) searchTerm was found and how similar it was to the original searchTerm.
The reason why I'm not using Lucene or similar, is the fact that it is to bulky for my use case and I need the search only once. The maxDistance for Edits using Lucene's FuzzyQuery is only 2, too, which is not good enough for my special use case.
Is there a lightweight library that can achieve sth. like shown above?