paradedb.fuzzy_term
.fuzzy_term
finds results that approximately match the query term,
allowing for minor typos in the input.
value
is treated as a raw token and is not processed further. Use
match
to process and fuzzy match
a query string.2
.true
, transpositions (swapping two adjacent characters) as a
single edit in the Levenshtein distance calculation, while false
considers
it two separate edits (a deletion and an insertion).true
, the initial substring (prefix) of the query term is
exempted from the fuzzy edit distance calculation, while false includes the
entire string in the calculation.