summaryrefslogblamecommitdiff
path: root/readme.md
blob: 80c7a844f72903218388038f0175bd1939d9f6b7 (plain) (tree)
1
2
             
                                                                                                                                                                       


























                                                                                                                                
#stringmetric
A collection of string metrics built with Scala. Includes a light-weight core API and CLI for each string metric. The following string metrics are currently supported:

* Jaro-Winkler

## Building the API
gradle jar

## Building the CLI
gradle tar

## Using the API
`// Import the metric of choice.`  
`import org.hashtree.stringmetric.JaroWinklerMetric`

`// Invoke the compare method on the metric.`  
`val distance = JaroWinklerMetric.compare("string1", "string2")`

`// Do something. In this case, distance is between 1.0f and 0.0f.`  
`if (distance >= 0.9) println("It's likely you're a match!")`

## Using the CLI
Uncompress the built tar and ensure you have ability to execute the commands. Execute the metric of choice via the command line:

`jaroWinklerMetric --help`  
`jaroWinklerMetric abc xyz`

## Requirements
* Scala 2.9.2