Skip to content

Commit

Permalink
regexp benchmarks begin/end of anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
s.kamardin committed Jan 20, 2016
1 parent 0de106b commit f98a889
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
20 changes: 10 additions & 10 deletions glob_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,40 +12,40 @@ import (

const (
pattern_all = "[a-z][!a-x]*cat*[h][!b]*eyes*"
regexp_all = `[a-z][^a-x].*cat.*[h][^b].*eyes.*`
regexp_all = `^[a-z][^a-x].*cat.*[h][^b].*eyes.*$`
fixture_all = "my cat has very bright eyes"

pattern_plain = "google.com"
regexp_plain = `google\.com`
regexp_plain = `^google\.com$`
fixture_plain = "google.com"

pattern_multiple = "https://*.google.*"
regexp_multiple = `https:\/\/.*\.google\..*`
regexp_multiple = `^https:\/\/.*\.google\..*$`
fixture_multiple = "https://account.google.com"

pattern_alternatives = "{https://*.google.*,*yandex.*,*yahoo.*,*mail.ru}"
regexp_alternatives = `(https:\/\/.*\.google\..*|.*yandex\..*|.*yahoo\..*|.*mail\.ru)`
regexp_alternatives = `^(https:\/\/.*\.google\..*|.*yandex\..*|.*yahoo\..*|.*mail\.ru)$`
fixture_alternatives = "http://yahoo.com"

pattern_alternatives_suffix = "{https://*gobwas.com,http://exclude.gobwas.com}"
regexp_alternatives_suffix = `(https:\/\/.*gobwas\.com|http://exclude.gobwas.com)`
regexp_alternatives_suffix = `^(https:\/\/.*gobwas\.com|http://exclude.gobwas.com)$`
fixture_alternatives_suffix_first = "https://safe.gobwas.com"
fixture_alternatives_suffix_second = "http://exclude.gobwas.com"

pattern_prefix = "abc*"
regexp_prefix = `abc.*`
regexp_prefix = `^abc.*$`
pattern_suffix = "*def"
regexp_suffix = `.*def`
regexp_suffix = `^.*def$`
pattern_prefix_suffix = "ab*ef"
regexp_prefix_suffix = `ab.*ef`
regexp_prefix_suffix = `^ab.*ef$`
fixture_prefix_suffix = "abcdef"

pattern_alternatives_combine_lite = "{abc*def,abc?def,abc[zte]def}"
regexp_alternatives_combine_lite = `(abc.*def|abc.def|abc[zte]def)`
regexp_alternatives_combine_lite = `^(abc.*def|abc.def|abc[zte]def)$`
fixture_alternatives_combine_lite = "abczdef"

pattern_alternatives_combine_hard = "{abc*[a-c]def,abc?[d-g]def,abc[zte]?def}"
regexp_alternatives_combine_hard = `(abc.*[a-c]def|abc.[d-g]def|abc[zte].def)`
regexp_alternatives_combine_hard = `^(abc.*[a-c]def|abc.[d-g]def|abc[zte].def)$`
fixture_alternatives_combine_hard = "abczqdef"
)

Expand Down
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ The same things with `regexp` package:

Pattern | Fixture | Operations | Speed (ns/op)
--------|---------|------------|--------------
`[a-z][^a-x].*cat.*[h][^b].*eyes.*` | `my cat has very bright eyes` | 500000 | 2762
`https:\/\/.*\.google\..*` | `https://account.google.com` | 1000000 | 1191
`(https:\/\/.*\.google\..*|.*yandex\..*|.*yahoo\..*|.*mail\.ru)` | `http://yahoo.com` | 1000000 | 1444
`(https:\/\/.*gobwas\.com|http://exclude.gobwas.com)` | `https://safe.gobwas.com` | 1000000 | 1037
`abc.*` | `abcdef` | 3000000 | 414
`.*def` | `abcdef` | 5000000 | 276
`ab.*ef` | `abcdef` | 5000000 | 352
`^[a-z][^a-x].*cat.*[h][^b].*eyes.*$` | `my cat has very bright eyes` | 500000 | 2553
`^https:\/\/.*\.google\..*$` | `https://account.google.com` | 1000000 | 1205
`^(https:\/\/.*\.google\..*|.*yandex\..*|.*yahoo\..*|.*mail\.ru)$` | `http://yahoo.com` | 1000000 | 1435
`^(https:\/\/.*gobwas\.com|http://exclude.gobwas.com)$` | `https://safe.gobwas.com` | 1000000 | 1039
`^abc.*$` | `abcdef` | 3000000 | 275
`^.*def$` | `abcdef` | 5000000 | 464
`^ab.*ef$` | `abcdef` | 5000000 | 395

[godoc-image]: https://godoc.org/github.com/gobwas/glob?status.svg
[godoc-url]: https://godoc.org/github.com/gobwas/glob
Expand Down

0 comments on commit f98a889

Please sign in to comment.