Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 397 Bytes

File metadata and controls

7 lines (5 loc) · 397 Bytes

MySQL UDF functions implemented in C for:

  • General Levenshtein algorithm
  • k-bounded Levenshtein distance algorithm (linear time, constant space),
  • Levenshtein ratio -- syntactic sugar for levenshtein_ratio(s, t) = 1 - levenshtein(s, t) / max(s.length, t.length)

Installation instructions in the same .c file.