mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-20 15:16:42 +00:00
13 lines
612 B
Markdown
13 lines
612 B
Markdown
|
# matchr
|
||
|
|
||
|
An approximate string matching library for the [Go programming language](http://www.golang.org).
|
||
|
|
||
|
## Rationale
|
||
|
|
||
|
Data used in record linkage can often be of dubious quality. Typographical
|
||
|
errors or changing data elements (to name a few things) make establishing similarity between two sets of data
|
||
|
difficult. Rather than use exact string comparison in such situations, it is
|
||
|
vital to have a means to identify how similar two strings are. Similarity functions can cater
|
||
|
to certain data sets in order to make better matching decisions. The matchr library provides
|
||
|
several of these similarity functions.
|