diff options
Diffstat (limited to 'skate')
-rw-r--r-- | skate/matchset.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/skate/matchset.go b/skate/matchset.go index c8882e2..d5f5093 100644 --- a/skate/matchset.go +++ b/skate/matchset.go @@ -9,9 +9,8 @@ import ( const matchSetSep = "\u001F" -// MatchSet allows to match a string against multiple strings at once. Rough -// performance number: looking up ~80K different strings in 1M strings takes -// about <2s. +// MatchSet allows to match a string against multiple strings at once. Rough +// performance: looking up ~80K different strings in 1M strings takes <2s. // // The original use case was to match ~80K+ journal name abbreviations against // 100M+ container name strings in references. |