fast-levenshtein
fast-levenshtein copied to clipboard
Terribly slow
Much slower than levenshtein distance using dynamic programming.
Any suggestions?
@vittorinoDaFeltre this implementation is actually done with dynamic programming as far as I can see.
Also worth noting that @gustf has an alternative implementation here with some updated benchmarks: https://github.com/gustf/js-levenshtein
I have created an implementation that is quite a lot faster than js-levenshtein. Take a look: https://github.com/ka-weihe/fastest-levenshtein