Implementation of the Aho-Corasick string-search algorithm in Go.
Licensed under MIT License.
This implementation does not use a Double-Array Trie as in my implementation from a couple of years back.
This reduces the build time drastically, but at the cost of higher memory consumption.
The search time is still fast, and comparable to other Go implementations I have found on github that claims to be fast (see performance).
Can be found at godoc.org.
Use a TrieBuilder to build a Trie:
trie := NewTrieBuilder().
AddStrings([]string{"or", "amet"}).
Build()
Then go and match something interesting:
matches := trie.MatchString("Lorem ipsum dolor sit amet, consectetur adipiscing elit.")
fmt.Printf("Got %d matches.\n", len(matches))
// => Got 3 matches.
What did we match?
for _, match := range matches {
fmt.Printf("Matched pattern %d %q at position %d.\n", match.Match(),
match.Pattern(), match.Pos())
}
// => Matched pattern 0 "or" at position 1.
// => Matched pattern 0 "or" at position 15.
// => Matched patterh 1 "amet" at position 22.
You can easily load patterns from file:
builder := NewTrieBuilder()
builder.LoadPatterns("patterns.txt")
builder.LoadStrings("strings.txt")
Both functions expects a text file with one pattern per line. LoadPatterns expects the pattern to
be in hexadecimal form.
Use Encode to store a Trie in gzip compressed binary format:
f, err := os.Create("trie.gz")
err := Encode(f, trie)
And Decode to load it from binary format:
f, err := os.Open("trie.gz")
trie, err := Decode(f)
Some simple benchmarking on my machine (Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz, 32 GiB RAM).
Build and search time grows quite linearly with regards to number of patterns and input text length.
BenchmarkTrieBuild/100-12 10000 0.1460 ms/op
BenchmarkTrieBuild/1000-12 1000 2.1643 ms/op
BenchmarkTrieBuild/10000-12 100 14.3305 ms/op
BenchmarkTrieBuild/100000-12 10 131.2442 ms/op
BenchmarkMatchIbsen/100-12 2000000 0.0006 ms/op
BenchmarkMatchIbsen/1000-12 300000 0.0042 ms/op
BenchmarkMatchIbsen/10000-12 30000 0.0436 ms/op
BenchmarkMatchIbsen/100000-12 3000 0.4310 ms/op
As mentioned, the memory consumption will be quite high compared to a double-array trie implementation. Especially during the build phase (which currently contains a lot of object allocations).
$ claude mcp add aho-corasick \
-- python -m otcore.mcp_server <graph>