kiyoka / fuzzy-string-match

fuzzy string matching library for ruby
Apache License 2.0
285 stars 39 forks source link

Reduce calls to strlen() in native jaro winkler #14

Closed timsatterfield closed 7 years ago

timsatterfield commented 9 years ago

Cost of strlen is proportional to the length on the input strings, so lets just do that once for each input.

mhenrixon commented 8 years ago

:+1: