This commit is contained in:
s.kamardin 2015-12-01 17:22:53 +03:00
parent 21665ef529
commit b809127dcf
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ func main() {
## Performance
In comparison with [go-glob](https://github.com/ryanuber/go-glob), it is ~2.5x faster (on my personal Mac),
In comparison with [go-glob](https://github.com/ryanuber/go-glob), it is ~2.5x faster (on my Mac),
because my impl compiles patterns for future usage. If you will not use compiled `glob.Glob` object,
and do `g := glob.New(pattern); g.Match(...)` every time, then your code will be about ~3x slower.