Approximation

Approximation expansion finds words that are lexicographically similar to other words. This query expansion module works by default with the spellslike linguistic prefix handler.

Approximation is useful for full-text search to correct user queries with typos. For example, if the user enters croped, the search results displays hits with cropped, the correct spelling, automatically.

Approximation is the search for a query word with a fuzzy match in the corpus. It is performed by calculating the Damereau-Levenshtein distance between the query word and the corpus word.

This page discusses:

See Also
Configuring Query Expansion