Skip to content

A biased barometer for gauging the relative speed of some regex engines on a curated set of tasks.

License

Notifications You must be signed in to change notification settings

BurntSushi/rebar

Repository files navigation

rebar

A biased barometer for gauging the relative speed of some regex engines on a curated set of tasks.

Links

  • METHODOLOGY describes the motivation, design, benchmark selection and evaluation protocol used by rebar.
  • BUILD describes how to build rebar and the regex engines it measures.
  • CONTRIBUTING describes how to add new benchmarks and how to add a new regex engine to benchmark.
  • MODELS describes the different types of workloads measured.
  • FORMAT describes the directory hierarchy and TOML format for how benchmarks are defined.
  • KLV describes the format of data given to regex engine runner programs for how to execute a benchmark.
  • BIAS is a work-in-progress document describing the bias of this barometer.
  • WANTED provides some ideas for other regex engines to add to rebar.

Results

This section shows the results of a curated and biased set of benchmarks. These reflect only a small subset of the benchmarks defined in this repository, but were carefully crafted to attempt to represent a broad range of use cases and annotated where possible with analysis to aide in the interpretation of results.

The results begin with a summary, then a list of links to each benchmark group and then finally the results for each group. Results are shown one benchmark group at a time, where a single group is meant to combine related regexes or workloads, where it is intended to be useful to see how results change across regex engines. Analysis is provided, at minimum, for every group. Although, analysis is heavily biased towards Rust's regex crate, as it is what this author knows best. However, contributions that discuss other regex engines are very welcomed.

Below each group of results are the parameters for each individual benchmark within that group. An individual benchmark may contain some analysis specific to it, but it will at least contain a summary of the benchmark details. Some parameters, such as the haystack, are usually too big to show in this README. One can use rebar to look at the haystack directly. Just take the full name of the benchmark and give it to the rebar haystack command. For example:

$ rebar haystack unicode/compile/fifty-letters
ͱͳͷΐάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώϙϛϝϟϡϸϻͱͳͷΐάέή

Similarly, the full benchmark execution details (including the haystack) can be seen with the rebar klv command:

$ rebar klv unicode/compile/fifty-letters
name:29:unicode/compile/fifty-letters
model:7:compile
pattern:7:\pL{50}
case-insensitive:5:false
unicode:4:true
haystack:106:ͱͳͷΐάέήίΰαβγδεζηθικλμνξοπρςστυφχψωϊϋόύώϙϛϝϟϡϸϻͱͳͷΐάέή
max-iters:1:0
max-warmup-iters:1:0
max-time:1:0
max-warmup-time:1:0

Finally, you can run the benchmark yourself and look at results on the command line:

$ rebar measure -f '^unicode/compile/fifty-letters$' | tee results.csv
$ rebar cmp results.csv

Summary

Below are two tables summarizing the results of regex engines benchmarked. Each regex engine includes its version at the time measurements were captured, a summary score that ranks it relative to other regex engines across all benchmarks and the total number of measurements collected.

The first table ranks regex engines based on search time. The second table ranks regex engines based on compile time.

The summary statistic used is the geometric mean of the speed ratios for each regex engine across all benchmarks that include it. The ratios within each benchmark are computed from the median of all timing samples taken, and dividing it by the best median of the regex engines that participated in the benchmark. For example, given two regex engines A and B with results 35 ns and 25 ns on a single benchmark, A has a speed ratio of 1.4 and B has a speed ratio of 1.0. The geometric mean reported here is then the "average" speed ratio for that regex engine across all benchmarks.

Each regex engine is linked to the directory containing the runner program responsible for compiling a regex, using it in a search and reporting timing results. Each directory contains a README file briefly describing any engine specific details for the runner program.

Each regex engine is also defined in benchmarks/engines.toml, using the same name listed in the table below. Each definition includes instructions for how to run, build, clean and obtain the version of each regex engine.

Caution: Using a single number to describe the overall performance of a regex engine is a fraught endeavor, and it is debatable whether it should be included here at all. It is included primarily because the number of benchmarks is quite large and overwhelming. It can be quite difficult to get a general sense of things without a summary statistic. In particular, a summary statistic is also useful to observe how the overall picture itself changes as changes are made to the barometer. (Whether it be by adding new regex engines or adding/removing/changing existing benchmarks.) One particular word of caution is that while geometric mean is more robust with respect to outliers than arithmetic mean, it is not unaffected by them. Therefore, it is still critical to examine individual benchmarks if one wants to better understanding the performance profile of any specific regex engine or workload.

Summary of search-time benchmarks

Engine Version Geometric mean of speed ratios Benchmark count
hyperscan 5.4.1 2023-02-22 2.17 25
rust/regex/meta 0.2.0 2.27 35
rust/regex 1.7.2 2.97 27
pcre2/jit 10.42 2022-12-11 4.61 31
dotnet/compiled 7.0.3 5.68 31
rust/regexold 1.7.2 6.75 28
re2 2023-03-01 7.93 28
dotnet/nobacktrack 7.0.3 8.56 26
javascript/v8 19.7.0 11.91 27
regress 0.5.0 27.24 27
python/regex 2023.3.23 34.06 31
python/re 3.10.9 34.08 30
java/hotspot 20+36-2344 36.36 31
perl 5.36.0 39.96 30
icu 72.1.0 40.91 31
go/regexp 1.20.1 62.50 28
pcre2 10.42 2022-12-11 93.25 30

Summary of compile-time benchmarks

Engine Version Geometric mean of speed ratios Benchmark count
pcre2 10.42 2022-12-11 1.39 10
icu 72.1.0 2.91 11
regress 0.5.0 3.10 8
pcre2/jit 10.42 2022-12-11 5.49 11
rust/regex/meta 0.2.0 10.86 14
re2 2023-03-01 11.05 10
rust/regexold 1.7.2 15.50 12
go/regexp 1.20.1 15.82 10
rust/regex 1.7.2 17.77 11
dotnet/compiled 7.0.3 19.42 10
python/re 3.10.9 40.76 11
dotnet/nobacktrack 7.0.3 127.83 6
python/regex 2023.3.23 130.30 11
hyperscan 5.4.1 2023-02-22 442.46 7

Benchmark Groups

Below is a list of links to each benchmark group in this particular barometer. Each benchmark group contains 1 or more related benchmarks. The idea of each group is to tell some kind of story about related workloads, and to give a sense of how performance changes based on the variations between each benchmark.

literal

This group of benchmarks measures regex patterns that are simple literals. When possible, we also measure case insensitive versions of the same pattern. We do this across three languages: English, Russian and Chinese. For English, Unicode mode is disabled while it is enabled for Russian and Chinese. (Which mostly only matters for the case insensitive benchmarks.)

This group is mainly meant to demonstrate two things. Firstly is whether the regex engine does some of the most basic forms of optimization by recognizing that a pattern is just a literal, and that a full blown regex engine is probably not needed. Indeed, naively using a regex engine for this case is likely to produce measurements much worse than most regex engines. Secondly is how the performance of simple literal searches changes with respect to both case insensitivity and Unicode. Namely, substring search algorithms that work well on ASCII text don't necessarily also work well on UTF-8 that contains many non-ASCII codepoints. This is especially true for case insensitive searches.

Notice, for example, how RE2 seems to be faster in the sherlock-casei-ru benchmark than in the sherlock-ru benchmark, even though the latter is "just" a simple substring search where as the former is a multiple substring search. In the case of sherlock-ru, RE2 actually attempts a literal optimization that likely gets caught up in dealing with a high false positive rate of candidates. Where as in the case of sherlock-casei-ru, no literal optimization is attempted and instead its lazy DFA is used. The high false positive rate in the simpler literal case winds up making it overall slower than it likely would be if it would just use the DFA.

This is not in any way to pick on RE2. Every regex engine that does literal optimizations (and most do) will suffer from this kind of setback in one way or another.

Engine sherlock-en sherlock-casei-en sherlock-ru sherlock-casei-ru sherlock-zh
dotnet/compiled 14.2 GB/s 6.0 GB/s 20.4 GB/s 5.1 GB/s 34.4 GB/s
dotnet/nobacktrack 8.6 GB/s 4.1 GB/s 7.2 GB/s 2.4 GB/s 27.4 GB/s
go/regexp 3.9 GB/s 43.1 MB/s 2.1 GB/s 32.9 MB/s 2038.1 MB/s
hyperscan 30.7 GB/s 30.3 GB/s 4.3 GB/s 7.3 GB/s 50.6 GB/s
icu 1596.6 MB/s 451.4 MB/s 3.0 GB/s 281.0 MB/s 4.3 GB/s
java/hotspot 2.4 GB/s 281.2 MB/s 3.5 GB/s 222.9 MB/s 5.1 GB/s
javascript/v8 5.2 GB/s 2.8 GB/s 41.6 GB/s 3.3 GB/s 10.9 GB/s
pcre2 7.2 GB/s 988.7 MB/s 2020.5 KB/s 2000.7 KB/s 57.0 MB/s
pcre2/jit 26.4 GB/s 16.4 GB/s 31.4 GB/s 18.6 GB/s 37.2 GB/s
perl 2.9 GB/s 556.9 MB/s 3.4 GB/s 98.3 MB/s 7.2 GB/s
python/re 3.7 GB/s 295.7 MB/s 6.5 GB/s 455.3 MB/s 11.2 GB/s
python/regex 3.6 GB/s 2.8 GB/s 4.7 GB/s 4.0 GB/s 5.6 GB/s
re2 12.1 GB/s 2.5 GB/s 764.2 MB/s 942.0 MB/s 2.8 GB/s
regress 3.5 GB/s 1155.0 MB/s 3.6 GB/s 324.9 MB/s 3.6 GB/s
rust/regex 32.4 GB/s 9.0 GB/s 31.8 GB/s 7.9 GB/s 38.7 GB/s
rust/regex/meta 28.0 GB/s 10.7 GB/s 32.7 GB/s 8.4 GB/s 31.9 GB/s
rust/regexold 31.4 GB/s 8.3 GB/s 33.0 GB/s 7.1 GB/s 39.0 GB/s
Show individual benchmark parameters.

sherlock-en

Parameter Value
full name curated/01-literal/sherlock-en
model count
regex Sherlock Holmes
case-insensitive false
unicode false
haystack-path opensubtitles/en-sampled.txt
count(.*) 513

sherlock-casei-en

Parameter Value
full name curated/01-literal/sherlock-casei-en
model count
regex Sherlock Holmes
case-insensitive true
unicode false
haystack-path opensubtitles/en-sampled.txt
count(.*) 522

sherlock-ru

Parameter Value
full name curated/01-literal/sherlock-ru
model count
regex Шерлок Холмс
case-insensitive false
unicode true
haystack-path opensubtitles/ru-sampled.txt
count(.*) 724

sherlock-casei-ru

Parameter Value
full name curated/01-literal/sherlock-casei-ru
model count
regex Шерлок Холмс
case-insensitive true
unicode true
haystack-path opensubtitles/ru-sampled.txt
count(.*) 746

sherlock-zh

Parameter Value
full name curated/01-literal/sherlock-zh
model count
regex 夏洛克·福尔摩斯
case-insensitive false
unicode true
haystack-path opensubtitles/zh-sampled.txt
count(.*) 30

literal-alternate

This group is like literal, but expands the complexity from a simple literal to a small alternation of simple literals, including case insensitive variants where applicable. Once again, we do this across three languages: English, Russian and Chinese. We disable Unicode mode for English but enable it for Russian and Chinese. Enabling Unicode here generally only means that case insensitivity takes Unicode case folding rules into account.

This benchmark ups the ante when it comes to literal optimizations. Namely, for a regex engine to optimize this case, it generally needs to be capable of reasoning about literal optimizations that require one or more literals from a set to match. Many regex engines don't deal with this case well, or at all. For example, after a quick scan at comparing the sherlock-en benchmark here and in the previous literal group, one thing that should stand out is the proportion of regex engines that now measure throughput in MB/s instead of GB/s.

One of the difficulties in optimizing for this case is that multiple substring search is difficult to do in a way that is fast. In particular, this benchmark carefully selected each alternation literal to start with a different character than the other alternation literals. This, for example, inhibits clever regex engines from noticing that all literals begin with the same byte (or small number of bytes). Consider an alternation like foo|far|fight. It is not hard to see that a regex engine could just scan for the letter f as a prefilter optimization. Here, we pick our regex such that this sort of shortcut isn't available. For the regex engine to optimize this case, it really needs to deal with the problem of multiple substring search.

Multiple substring search can be implemented via a DFA, and perhaps in some cases, quite quickly via a shift DFA. Beyond that though, multiple substring search can be implemented by other various algorithms such as Aho-Corasick or Rabin-Karp. (The standard Aho-Corasick formulation is an NFA, but it can also be converted to a DFA by pre-computing all failure transitions. This winds up with a similar result as using Thompson's construction to produce an NFA and then powerset construction to get a DFA, but the Aho-Corasick construction algorithm is usually quite a bit faster because it doesn't need to deal with a full NFA.)

The problem here is that DFA speeds may or may not help you. For example, in the case of RE2 and Rust's regex engine, it will already get DFA speeds by virtue of their lazy DFAs. Indeed, in this group, RE2 performs roughly the same across all benchmarks. So even if you, say build an Aho-Corasick DFA, it's not going to help much if at all. So it makes sense to avoid it.

But Rust's regex crate has quite a bit higher throughputs than RE2 on most of the benchmarks in this group. So how is it done? Currently, this is done via the Teddy algorithm, which was ported out of Hyperscan. It is an algorithm that makes use of SIMD to accelerate searching for a somewhat small set of literals. Most regex engines don't have this sort of optimization, and indeed, it seems like Teddy is not particularly well known. Alas, regex engines that want to move past typical DFA speeds for multiple substring search likely need some kind of vectorized algorithm to do so. (Teddy is also used by Rust's regex crate in the previous literal group of benchmarks for accelerating case insensitive searches. Namely, it enumerates some finite set of prefixes like she, SHE, ShE and so on, and then looks for matches of those as a prefilter.)

Engine sherlock-en sherlock-casei-en sherlock-ru sherlock-casei-ru sherlock-zh
dotnet/compiled 3.7 GB/s 446.7 MB/s 2.2 GB/s 780.1 MB/s 16.8 GB/s
dotnet/nobacktrack 2.6 GB/s 384.6 MB/s 1018.9 MB/s 290.8 MB/s 11.4 GB/s
go/regexp 24.8 MB/s 15.3 MB/s 32.5 MB/s 9.0 MB/s 45.7 MB/s
hyperscan 17.3 GB/s 15.6 GB/s 4.6 GB/s 4.0 GB/s 16.5 GB/s
icu 630.6 MB/s 113.0 MB/s 168.3 MB/s 105.9 MB/s 335.8 MB/s
java/hotspot 69.9 MB/s 64.6 MB/s 119.3 MB/s 56.1 MB/s 174.7 MB/s
javascript/v8 686.1 MB/s 670.0 MB/s 930.3 MB/s 596.7 MB/s 6.6 GB/s
pcre2 875.1 MB/s 175.0 MB/s 1700.2 KB/s 1581.2 KB/s 8.5 MB/s
pcre2/jit 1563.2 MB/s 654.6 MB/s 1188.7 MB/s 297.2 MB/s 2.5 GB/s
perl 1082.2 MB/s 113.9 MB/s 118.5 MB/s 78.0 MB/s 230.9 MB/s
python/re 437.5 MB/s 36.7 MB/s 411.5 MB/s 55.6 MB/s 1030.6 MB/s
python/regex 299.9 MB/s 68.6 MB/s 302.6 MB/s 85.3 MB/s 872.8 MB/s
re2 923.7 MB/s 922.8 MB/s 930.3 MB/s 924.6 MB/s 965.4 MB/s
regress 1517.9 MB/s 274.9 MB/s 242.4 MB/s 109.3 MB/s 245.5 MB/s
rust/regex 13.0 GB/s 2.7 GB/s 6.6 GB/s 1647.3 MB/s 15.2 GB/s
rust/regex/meta 12.7 GB/s 2.9 GB/s 6.6 GB/s 1693.4 MB/s 13.1 GB/s
rust/regexold 16.4 GB/s 2.8 GB/s 3.0 GB/s 456.6 MB/s 19.7 GB/s
Show individual benchmark parameters.

sherlock-en

Parameter Value
full name curated/02-literal-alternate/sherlock-en
model count
regex Sherlock Holmes|John Watson|Irene Adler|Inspector Lestrade|Professor Moriarty
case-insensitive false
unicode false
haystack-path opensubtitles/en-sampled.txt
count(.*) 714

sherlock-casei-en

Parameter Value
full name curated/02-literal-alternate/sherlock-casei-en
model count
regex Sherlock Holmes|John Watson|Irene Adler|Inspector Lestrade|Professor Moriarty
case-insensitive true
unicode false
haystack-path opensubtitles/en-sampled.txt
count(.*) 725

sherlock-ru

Parameter Value
full name curated/02-literal-alternate/sherlock-ru
model count
regex Шерлок Холмс|Джон Уотсон|Ирен Адлер|инспектор Лестрейд|профессор Мориарти
case-insensitive false
unicode true
haystack-path opensubtitles/ru-sampled.txt
count(.*) 899

sherlock-casei-ru

Parameter Value
full name curated/02-literal-alternate/sherlock-casei-ru
model count
regex Шерлок Холмс|Джон Уотсон|Ирен Адлер|инспектор Лестрейд|профессор Мориарти
case-insensitive true
unicode true
haystack-path opensubtitles/ru-sampled.txt
count(.*) 971

sherlock-zh

Parameter Value
full name curated/02-literal-alternate/sherlock-zh
model count
regex 夏洛克·福尔摩斯|约翰华生|阿德勒|雷斯垂德|莫里亚蒂教授
case-insensitive false
unicode true
haystack-path opensubtitles/zh-sampled.txt
count(.*) 207

date

This is a monster regex for extracting dates from unstructured text from the datefinder project written in Python. The regex itself was taken from printing the DATES_PATTERN variable in the datefinder project. I then removed all names from the capture groups, unnecessary escapes and collapsed it to a single line (because not all regex engines support verbose mode).

The regex is more akin to a tokenizer, and the datefinder library attempts to combine these tokens into timestamps.

We measure an ASCII only version of it and a Unicode-aware version of it. Unicode is relevant here because of case insensitivity, and because the regex makes use of the character classes \s and \d, which are bigger when they're Unicode aware. We also measure the compilation time of each.

The results here can be a little tricky to interpret. Namely, it looks like backtrackers tend to do worse than automata oriented regex engines, but go/regexp uses automata and is itself quite slow here. Notice, though, that hyperscan, re2 and rust/regex do well here. While I'm less familiar with hyperscan, the explanation for re2 and rust/regex is obvious once you look at a profile: it's the lazy DFA. Both have implementations of a regex engine that build a DFA during search time, with at most one new transition (and one new state) being create per byte of haystack. In practice, most transitions get reused, which means that it tends to act like a real DFA most of the time for most regexes on most haystacks.

Compilation time of this monster regex is also all over the place. PCRE2 does the best, and Hyperscan winds up being quite slow. Once you enable Unicode mode, compilation time generally gets worse, and especially so for re2 and rust/regex. In particular, both compile byte oriented automata, which means the transitions are defined over bytes and not codepoints. That means large Unicode classes like \d tend to balloon in size, because they get converted into UTF-8 automata.

Engine ascii unicode compile-ascii compile-unicode
dotnet/compiled 1173.6 KB/s 1089.0 KB/s - 1.67ms
go/regexp 252.4 KB/s - 4.12ms -
hyperscan 105.1 MB/s - 648.30ms -
icu 319.8 KB/s 320.4 KB/s 430.95us 432.15us
java/hotspot 2.0 MB/s 1601.5 KB/s - -
javascript/v8 31.3 MB/s 28.3 MB/s - -
pcre2 1261.8 KB/s 181.0 KB/s 117.57us 132.61us
pcre2/jit 21.3 MB/s 13.0 MB/s 714.44us 0.98ms
perl 2.8 MB/s - - -
python/re 1078.8 KB/s 795.3 KB/s 4.76ms 4.99ms
python/regex 1101.3 KB/s 1003.2 KB/s 15.75ms 36.48ms
re2 75.4 MB/s - 1.16ms -
regress 1923.8 KB/s 1936.0 KB/s 1.20ms 1.20ms
rust/regex 140.1 MB/s 139.3 MB/s 1.91ms 6.13ms
rust/regex/meta 124.4 MB/s 122.1 MB/s 1.47ms 5.22ms
rust/regexold 137.1 MB/s 416.8 KB/s 1.73ms 6.14ms
Show individual benchmark parameters.

ascii

Parameter Value
full name curated/03-date/ascii
model count-spans
regex-path wild/date.txt
case-insensitive true
unicode false
haystack-path rust-src-tools-3b0d4813.txt
count(dotnet.*) 111825
count(hyperscan) 547662
count(icu) 111825
count(javascript/v8) 111825
count(regress) 111841
count(.*) 111817

As with many other benchmarks, Hyperscan reports all matches, even ones that are overlapping. This particular regex is too big to analyze closely, but it seems plausible one could still use it (possibly with a slightly tweaked regex) for this task.

unicode

Parameter Value
full name curated/03-date/unicode
model count-spans
regex-path wild/date.txt
case-insensitive true
unicode true
haystack-path rust-src-tools-3b0d4813.txt
count(`dotnet/compiled icu
count(.*) 111841

regress is included here despite its \d not being Unicode-aware (as required by ECMAScript). Notably, its \s is Unicode aware. (\w is too, but it's not used in this regex.) In this particular haystack, \d being ASCII-only doesn't impact the match count.

However, neither re2 nor go/regexp are included here because neither \d nor \s are Unicode-aware, and the \s being ASCII-only does impact the match count.

hyperscan is excluded here because the pattern results in a "too large" compilation error. As far as I know, Hyperscan doesn't expose any knobs for increasing this limit.

dotnet/compiled gets a different count here, but it's not clear why.

perl is left out of this benchmark because it times out.

compile-ascii

Parameter Value
full name curated/03-date/compile-ascii
model compile
regex-path wild/date.txt
case-insensitive true
unicode false
haystack 2010-03-14
count(hyperscan) 10
count(.*) 5

Notice that regress is now include in the ASCII benchmark, because in compile-unicode we specifically test that the \d used in this regex is Unicode-aware. regress does not make \d Unicode-aware, so it gets thrown into the ASCII group. But do note that it does appear to have some Unicode awareness.

compile-unicode

Parameter Value
full name curated/03-date/compile-unicode
model compile
regex-path wild/date.txt
case-insensitive true
unicode true
haystack ۲۰۱۰-۰۳-۱۴
count(`javascript/v8 regress`)
count(.*) 5

We use "extended arabic-indic digits" to represent the same date, 2010-03-14, that we use for verification in compile-ascii. These digits are part of \d when it is Unicode aware.

ruff-noqa

The regex benchmarked here comes from the Ruff project, which is a Python linter written in Rust. The project uses many regexes, but we pluck one out in particular that is likely to be run more frequently than the others:

(\s*)((?i:# noqa)(?::\s?(([A-Z]+[0-9]+(?:[,\s]+)?)+))?)

This is a regex that looks for # noqa annotations on each line. The noqa annotation generally causes the linter to ignore those lines with respect to warnings it emits. The regex also tries to extract annotations following the noqa that permit ignoring only specific rules in the linter.

This benchmark has a few interesting characteristics worth pointing out:

  • It is line oriented, which means the haystacks it searches are likely to be small. This in turn means that the overhead of the regex engine is likely to matter more than in throughput oriented benchmarks.
  • On this particular haystack (the CPython source code), the number of matches is quite small. Therefore, it is quite beneficial here to be able to have a fast path to say "there is no match" without doing any extra work. While the number of matches here is perhaps uncharacteristically small for a Python project, you would generally expect most lines to not have # noqa in them, and so the presumption of a fast rejection is probably a decent assumption for this particular regex.
  • Ruff uses capturing groups to pick out parts of the match, so when a match is found, the regex engine needs to report additional information beyond just the overall match spans. The spans of each matching capture group also need to be reported.
  • There are no prefix (or suffix) literals in the regex to enable any straight-forward prefilter optimizations.

With respect to the point about no prefix or suffix literals, we also include a tweaked version of the regex that removes the leading (\s*):

(?i:# noqa)(?::\s?(([A-Z]+[0-9]+(?:[,\s]+)?)+))?

In this case, the regex now starts with a literal, albeit one that is asked to match case insensitively. We can actually see pretty clearly the impact the tweaked version has on the speed for each regex engine. pcre2/jit, for example, improves its throughput from around 500 MB/s to 1.5 GB/s. go/regexp has an even more dramatic (relatively speaking) improvement.

rust/regex is a little different in that it's quite fast in both cases. The key optimization that applies for rust/regex is the "reverse inner" optimization. Even in the original regex, rust/regex will pluck out the # noqa literal and search for it case insensitively. When a candidate is found, it then searches for (\s*) in reverse to find the start position, and then finally does a standard forward search from that point to find the reverse position.

Engine real tweaked compile-real
dotnet/compiled 155.5 MB/s 488.2 MB/s 47.04us
dotnet/nobacktrack 245.7 MB/s 438.8 MB/s 412.23us
go/regexp 33.3 MB/s 720.3 MB/s 7.33us
icu 20.5 MB/s 322.7 MB/s 5.45us
java/hotspot 37.7 MB/s 196.0 MB/s -
pcre2 130.1 MB/s 1410.1 MB/s 1.12us
pcre2/jit 572.3 MB/s 1492.2 MB/s 6.80us
perl 101.9 MB/s 130.4 MB/s -
python/re 28.4 MB/s 108.4 MB/s 73.69us
python/regex 96.8 MB/s 95.8 MB/s 185.35us
re2 537.6 MB/s 712.8 MB/s 7.71us
rust/regex 729.1 MB/s 1339.5 MB/s 31.43us
rust/regex/meta 1652.0 MB/s 1557.4 MB/s 55.53us
rust/regexold 196.9 MB/s 1157.9 MB/s 39.62us
Show individual benchmark parameters.

real

Parameter Value
full name curated/04-ruff-noqa/real
model grep-captures
regex (\s*)((?i:# noqa)(?::\s?(([A-Z]+[0-9]+(?:[,\s]+)?)+))?)
case-insensitive false
unicode false
haystack-path wild/cpython-226484e4.py
count(.*) 84

tweaked

Parameter Value
full name curated/04-ruff-noqa/tweaked
model grep-captures
regex (?i:# noqa)(?::\s?(([A-Z]+[0-9]+(?:[,\s]+)?)+))?
case-insensitive false
unicode false
haystack-path wild/cpython-226484e4.py
count(.*) 44

compile-real

Parameter Value
full name curated/04-ruff-noqa/compile-real
model compile
regex (\s*)((?i:# noqa)(?::\s?(([A-Z]+[0-9]+(?:[,\s]+)?)+))?)
case-insensitive false
unicode false
haystack # noqa
count(.*) 1

lexer-veryl

This group benchmarks a "lexer" where it combines a whole bunch of different patterns that identify tokens in a language into a single regex. It then uses capture groups to determine which branch of the alternation actually matched, and thus, which token matched. We also benchmark a variant of this that asks the regex engine to search for each pattern individually (most regex engines don't support this mode).

This is used by the Veryl project by way of the Parol parser generator. The regex was extracted by the Parol maintainers upon my request.

We use this regex to represent the "lexing" use case, where sometimes folks will build a pretty big regex with a bunch of small regexes for identifying tokens. Usually the idea is that the lexer matches literally everything in the haystack (indeed, the last branch in this regex is a . and the first is any newline), and thus these sorts of regexes tend to be quite latency sensitive. Namely, it really matters just how much overhead is involved in reporting matches. This is likely one of the reasons why most regex engines are overall pretty slow here.

The other aspect of this that's quite difficult is the sheer number of capturing groups. There's several dozen of them, which means regex engines have to keep track of a fair bit of state to handle it.

You might think this would be bad for backtrackers and good for automata engines, since automata engines are supposed to be able to handle large alternations better than backtrackers. But that's not the case here. Even for example Python's regex engine (backtracker) beats RE2 (automata). My hypothesis for why this is, is latency. Automata engines tend to have multiple engines internally and therefore tend to have higher latency, and sometimes multiple engines run to service one search. Backtrackers tend to have one engine that handles everything. But still, shouldn't the huge alternation be disastrous for the backtracker? Perhaps, unless many of the matches occur in an early branch, which is likely the case here. Namely, the second alternation matches a (single ASCII space), which is probably the most frequently occurring byte in the haystack. An automata engine that doesn't use a DFA (which might be the case here, because the regex is so big), will wind up spending a lot of time keeping track of all branches of the alternation, even if it doesn't need to explore all of them. In contrast, a backtracker will try one after the other, and if most cases match an early branch, the backtracker is likely to take less overall time.

Most regex engines are stuck in the 1 MB/s (or less) range. The regex crate and PCRE2's JIT get up to about 10 MB/s, with PCRE2 edging out the regex crate.

Note that the regex was lightly modified from the original to increase portability across different regex engines. For example, the [\s--\r\n] class was changed to [\t\v\f ].

As for the second benchmark, multiple, it uses the same patterns from each alternation in the single benchmark, but treats each one as a distinct pattern. Doing this requires explicit support for searching multiple regex patterns. (RE2's and Rust's regex crate "regex set" functionality is not enough for this, as it only reports which patterns match a haystack, and not where they match. That's why the lower level regex/automata/meta engine is used, which exposes a more powerful but more complex API.)

In the multiple case, the rust/regex/meta does very well and the key reason is the abdication of capture groups as a necessary tool to determine which token matched. Namely, now we can simply use a pattern ID from the match to determine which "branch" in the original regex was taken. We no longer need to ask for or inspect capture groups. This gives a critical benefit to automata engines that support searching for multiple patterns, because it no longer requires them to use slower engines for resolving capturing groups.

Engine single compile-single multi
dotnet/compiled 196.3 KB/s 277.85us -
go/regexp 324.3 KB/s 209.59us -
hyperscan - - 17.9 MB/s
icu 966.7 KB/s 57.94us -
java/hotspot 6.3 MB/s - -
javascript/v8 6.6 MB/s - -
pcre2 2.8 MB/s 24.58us -
pcre2/jit 12.5 MB/s 130.45us -
perl 1163.0 KB/s - -
python/re 1573.8 KB/s 1.13ms -
python/regex 1407.6 KB/s 3.76ms -
re2 1191.7 KB/s 146.60us -
regress 8.3 MB/s - -
rust/regex 245.4 KB/s 291.67us -
rust/regex/meta 9.5 MB/s 270.72us 64.1 MB/s
rust/regexold 245.9 KB/s 270.87us -
Show individual benchmark parameters.

single

Parameter Value
full name curated/05-lexer-veryl/single
model count-captures
regex-path wild/parol-veryl.txt
case-insensitive false
unicode false
haystack-path wild/parol-veryl.vl
count(.*) 124800

Note that we don't include Hyperscan here because it doesn't support the count-captures benchmark model. It is included in the multiple benchmark below, which doesn't require capture groups.

Also, I tried to use dotnet/nobacktrack here, but it failed because it was too big and it wasn't obvious to me how to raise the limit.

compile-single

Parameter Value
full name curated/05-lexer-veryl/compile-single
model compile
regex-path wild/parol-veryl.txt
case-insensitive false
unicode false
haystack abcdefg_foobar
count(.*) 1

This measures how long it takes to a compile a moderately large lexer.

multi

Parameter Value
full name curated/05-lexer-veryl/multi
model count-spans
regex-path wild/parol-veryl.txt
case-insensitive false
unicode false
haystack-path wild/parol-veryl.vl
count(hyperscan) 669500
count(.*) 150600

Hyperscan reports everything that matches, including overlapping matches, and that's why its count is higher. It is likely still serviceable for this use case, but might in practice require changing the regex to suit Hyperscan's match semantics. Still, it's a decent barometer to include it here, particularly because of its multi-regex support.

Most regex engines do not support searching for multiple patterns and finding the corresponding match offsets, which is why this benchmark has very few entries.

cloud-flare-redos

This benchmark uses a regex that helped cause an outage at Cloudflare. This class of vulnerability is typically called a "regular expression denial of service," or "ReDoS" for short. It doesn't always require a malicious actor to trigger. Since it can be difficult to reason about the worst case performance of a regex when using an unbounded backtracking implementation, it might happen entirely accidentally on valid inputs.

The particular regex that contributed to the outage was:

(?:(?:"|'|\]|\}|\\|\d|(?:nan|infinity|true|false|null|undefined|symbol|math)|`|\-|\+)+[)]*;?((?:\s|-|~|!|\{\}|\|\||\+)*.*(?:.*=.*)))

As discussed in Cloudflare's post mortem, the specific problematic portion of the regex is:

.*(?:.*=.*)

Or more simply:

.*.*=.*;

We benchmark the original regex along with the simplified variant. We also split the simplified variant into one with a short haystack (about 100 bytes) and one with a long haystack (about 10,000 bytes). The benchmark results for the original and simplified short variant should be roughly similar, but the difference between the short and long variant is where things get interesting. The automata based engines generally maintain a similar throughput for both the short and long benchmarks, but the backtrackers slow way down. This is because the backtracking algorithm for this specific regex and haystack doesn't scale linearly with increases in the size of the haystack.

The purpose of this benchmark is to show a real world scenario where the use of a backtracking engine can bite you in production if you aren't careful.

We include Hyperscan in this benchmark, although it is questionable to do so. Hyperscan reports many overlapping matches from the regex used by Cloudflare because of the trailing .*, so it is probably not a great comparison. In particular, this regex was originally used in a firewall, so it seems likely that it would be used in a "is a match" or "not a match" scenario. But our benchmark here reproduces the analysis in the appendix of Cloudflare's port mortem. But the real utility in including Hyperscan here is that it demonstrates that it is not a backtracking engine. While its throughput is not as high as some other engines, it remains roughly invariant with respect to haystack length, just like other automata oriented engines.

Note that rust/regex has very high throughput here because the regex is small enough to get compiled into a full DFA. The compilation process also "accelerates" some states, particularly the final .*. This acceleration works by noticing that almost all of the state's transitions loop back on itself, and only a small number transition to another state. The final .* for example only leaves its state if it sees the end of the haystack or a \n. So the DFA will actually run memchr on \n and skip right to the end of the haystack.

Engine original simplified-short simplified-long
dotnet/compiled 131.3 MB/s 868.5 MB/s 13.4 GB/s
dotnet/nobacktrack 12.8 MB/s 188.2 MB/s 289.4 MB/s
go/regexp 41.5 MB/s 44.6 MB/s 48.6 MB/s
hyperscan 85.0 MB/s 81.7 MB/s 85.0 MB/s
icu 3.4 MB/s 3.5 MB/s 42.7 KB/s
java/hotspot 5.8 MB/s 6.3 MB/s 99.8 KB/s
javascript/v8 19.5 MB/s 18.6 MB/s 335.4 KB/s
pcre2 2.9 MB/s 2.8 MB/s 30.5 KB/s
pcre2/jit 49.1 MB/s 42.5 MB/s 671.2 KB/s
perl 10.4 MB/s 10.1 MB/s 176.7 KB/s
python/re 22.2 MB/s 21.8 MB/s 337.9 KB/s
python/regex 6.3 MB/s 6.2 MB/s 91.9 KB/s
re2 347.1 MB/s 333.1 MB/s 493.7 MB/s
regress 8.2 MB/s 8.0 MB/s 106.4 KB/s
rust/regex 434.2 MB/s 469.9 MB/s 604.4 MB/s
rust/regex/meta 570.1 MB/s 1835.4 MB/s 83.9 GB/s
rust/regexold 459.7 MB/s 481.6 MB/s 604.8 MB/s
Show individual benchmark parameters.

original

Parameter Value
full name curated/06-cloud-flare-redos/original
model count-spans
regex (?:(?:"|'|\]|\}|\\|\d|(?:nan|infinity|true|false|null|undefined|symbol|math)|`|-|\+)+[)]*;?((?:\s|-|~|!|\{\}|\|\||\+)*.*(?:.*=.*)))
case-insensitive false
unicode false
haystack math x=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx [.. snip ..]
count(hyperscan) 5757
count(.*) 107

simplified-short

Parameter Value
full name curated/06-cloud-flare-redos/simplified-short
model count-spans
regex .*.*=.*
case-insensitive false
unicode false
haystack x=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx [.. snip ..]
count(hyperscan) 5252
count(.*) 102

simplified-long

Parameter Value
full name curated/06-cloud-flare-redos/simplified-long
model count-spans
regex .*.*=.*
case-insensitive false
unicode false
haystack-path cloud-flare-redos.txt
count(hyperscan) 50004999
count(.*) 10000

unicode-character-data

This regex parses data from UnicodeData.txt, which is part of the Unicode Character Database. This regex was extracted from the ucd-parse crate, which is part of the ucd-generate project.

This benchmark works by iterating over every line in the haystack and then running the regex on each line. Every line matches the regex, so regex engines that attempt to do some extra work to reject non-matches quickly will get penalized. For example, rust/regex looks for a semi-colon first via its "reverse inner" optimization, since a semi-colon is a required part of the regex. But this optimization is just extra work here. Indeed, disabling it will improve the thoughput of rust/regex on this benchmark.

pcre2/jit does remarkably well here, and these types of regexes are one of the many things that pcre2/jit does quickly compared to most other regex engines.

We also include compilation time for this regex, where PCRE2 again does quite well.

Engine parse-line compile
dotnet/compiled 79.9 MB/s 41.35us
dotnet/nobacktrack 17.0 MB/s 148.42us
go/regexp 63.0 MB/s 39.45us
icu 132.6 MB/s 13.84us
java/hotspot 204.8 MB/s -
javascript/v8 218.6 MB/s -
pcre2 201.7 MB/s 2.13us
pcre2/jit 699.3 MB/s 12.48us
perl 23.3 MB/s -
python/re 45.3 MB/s 131.50us
python/regex 34.8 MB/s 402.18us
re2 107.5 MB/s 15.13us
regress 209.5 MB/s 6.07us
rust/regex 95.7 MB/s 21.38us
rust/regex/meta 359.3 MB/s 27.40us
rust/regexold 95.4 MB/s 18.61us
Show individual benchmark parameters.

parse-line

Parameter Value
full name curated/07-unicode-character-data/parse-line
model grep-captures
regex-path wild/ucd-parse.txt
case-insensitive false
unicode false
haystack-path wild/UnicodeData-15.0.0.txt
count(.*) 558784

compile

Parameter Value
full name curated/07-unicode-character-data/compile
model compile
regex-path wild/ucd-parse.txt
case-insensitive false
unicode false
haystack 249D;PARENTHESIZED LATIN SMALL LETTER B;So;0;L;<compat> 0028 [.. snip ..]
count(.*) 1

words

This benchmark measures how long it takes for a regex engine to find words in a haystack. We compare one regex that finds all words, \b\w+\b and another regex that only looks for longer words, \b\w{12,}\b. We also compare ASCII regexes on English text with Unicode regexes on Russian text.

The split between finding all words and finding only long words tends to highlight the overhead of matching in each regex engine. Regex engines that are quicker to get in and out of its match routine do better at finding all words than regex engines that have higher overhead. For example, regress is faster than rust/regex on all-english, but substantially slower than rust/regex on long-english. This is likely because rust/regex is doing more work per search call than regress, which is in part rooted in the optimizations it performs to gain higher throughput.

Otherwise, pcre2/jit does quite well here across the board, but especially on the Unicode variants. When comparing it against rust/regex for example, it is substantially faster. In the case of rust/regex, its faster DFA oriented engines cannot handle the Unicode aware \b on non-ASCII haystacks, and this causes rust/regex to use a slower internal engine. It's so slow in fact that python/re and python/regex are both faster than rust/regex for the Unicode benchmarks. For the ASCII long-english benchmark, rust/regex and re2 both do well because most of the time is spent in its lazy DFA, which has pretty good throughput performance when compared to a pure backtracker.

Note that several regex engines can't be used in the Unicode variants because either they don't support a Unicode aware \w or because they don't support a Unicode aware \b (or both).

Engine all-english all-russian long-english long-russian
dotnet/compiled 58.8 MB/s 98.5 MB/s 178.6 MB/s 113.7 MB/s
dotnet/nobacktrack 29.4 MB/s 38.5 MB/s 144.4 MB/s 124.4 MB/s
go/regexp 12.1 MB/s - 45.3 MB/s -
hyperscan 158.9 MB/s - 437.2 MB/s -
icu 78.2 MB/s 106.5 MB/s 41.4 MB/s 55.2 MB/s
java/hotspot 77.1 MB/s 140.9 MB/s 71.4 MB/s 112.6 MB/s
javascript/v8 161.8 MB/s - 197.5 MB/s -
pcre2 97.6 MB/s 127.8 KB/s 70.1 MB/s 6.1 MB/s
pcre2/jit 189.3 MB/s 228.9 MB/s 245.1 MB/s 196.2 MB/s
perl 13.6 MB/s 35.1 KB/s 104.8 MB/s 1838.9 KB/s
python/re 33.7 MB/s 43.8 MB/s 109.5 MB/s 114.8 MB/s
python/regex 23.9 MB/s 44.8 MB/s 36.6 MB/s 99.3 MB/s
re2 63.4 MB/s - 921.0 MB/s -
regress 169.3 MB/s - 146.2 MB/s -
rust/regex/meta 107.3 MB/s 19.8 MB/s 800.1 MB/s 35.1 MB/s
Show individual benchmark parameters.

all-english

Parameter Value
full name curated/08-words/all-english
model count-spans
regex \b[0-9A-Za-z_]+\b
case-insensitive false
unicode false
haystack-path opensubtitles/en-sampled.txt
count(dotnet/compiled) 56601
count(dotnet/nobacktrack) 56601
count(icu) 56601
count(.*) 56691

We specifically write out [0-9A-Za-z_] instead of using \w because some regex engines, such as the one found in .NET, make \w Unicode aware and there doesn't appear to be any easy way of disabling it.

Also, the .NET engine makes \b Unicode-aware, which also appears impossible to disable. To account for that, we permit a different count.

all-russian

Parameter Value
full name curated/08-words/all-russian
model count-spans
regex \b\w+\b
case-insensitive false
unicode true
haystack-path opensubtitles/ru-sampled.txt
count(dotnet.*) 53960
count(icu) 53960
count(java.*) 53960
count(perl) 53960
count(.*) 107391

regress, re2 and go/regexp are excluded because \w is not Unicode aware. hyperscan is exclude because it doesn't support a Unicode aware \b.

For dotnet/compiled, since the length of matching spans is in the number of UTF-16 code units, its expected count is smaller.

For perl, it has the same count as dotnet/compiled, but only because it counts total encoded codepoints. Since every match span in this benchmark seemingly corresponds to codepoints in the basic multi-lingual plane, it follows that the number of UTF-16 code units is equivalent to the number of codepoints.

long-english

Parameter Value
full name curated/08-words/long-english
model count-spans
regex \b[0-9A-Za-z_]{12,}\b
case-insensitive false
unicode false
haystack-path opensubtitles/en-sampled.txt
count(.*) 839

We specifically write out [0-9A-Za-z_] instead of using \w because some regex engines, such as the one found in .NET, make \w Unicode aware and there doesn't appear to be any easy way of disabling it.

Also, the fact that \b is Unicode-aware in .NET does not seem to impact the match counts in this benchmark.

long-russian

Parameter Value
full name curated/08-words/long-russian
model count-spans
regex \b\w{12,}\b
case-insensitive false
unicode true
haystack-path opensubtitles/ru-sampled.txt
count(dotnet.*) 2747
count(icu) 2747
count(java.*) 2747
count(perl) 2747
count(.*) 5481

regress, re2 and go/regexp are excluded because \w is not Unicode aware. hyperscan is exclude because it doesn't support a Unicode aware \b.

For dotnet/compiled, since the length of matching spans is in the number of UTF-16 code units, its expected count is smaller.

For perl, it has the same count as dotnet/compiled, but only because it counts total encoded codepoints. Since every match span in this benchmark seemingly corresponds to codepoints in the basic multi-lingual plane, it follows that the number of UTF-16 code units is equivalent to the number of codepoints.

aws-keys

This measures a regex for detecting AWS keys in source codeaws-key-blog. In particular, to reduce false positives, it looks for both an access key and a secret key within a few lines of one another.

We also measure a "quick" version of the regex that is used to find possible candidates by searching for things that look like an AWS access key.

The measurements here demonstrate why the pypi-aws-secrets project splits this task into two pieces. First it uses the "quick" version to identify candidates, and then it uses the "full" version to lower the false positive rate of the "quick" version. The "quick" version of the regex runs around an order of magnitude faster than the "full" version across the board. To understand why, let's look at the "quick" regex:

((?:ASIA|AKIA|AROA|AIDA)([A-Z0-7]{16}))

Given this regex, every match starts with one of ASIA, AKIA, AROA or AIDA. This makes it quite amenable to prefilter optimizations where a regex engine can look for matches of one of those 4 literals, and only then use the regex engine to confirm whether there is a match at that position. Some regex engines will also notice that every match starts with an A and use memchr to look for occurrences of A as a fast prefilter.

We also include compilation times to give an idea of how long it takes to compile a moderately complex regex, and how that might vary with the compilation time of a much simpler version of the regex.

Note that in all of the measurements for this group, we search the CPython source code (concatenated into one file). We also lossily convert it to UTF-8 so that regex engines like regress can participate in this benchmark. (The CPython source code contains a very small amount of invalid UTF-8.)

Engine full quick compile-full compile-quick
dotnet/compiled 501.4 MB/s 809.2 MB/s 102.89us 41.59us
dotnet/nobacktrack - 673.1 MB/s - 209.41us
go/regexp 112.1 MB/s 860.9 MB/s 64.50us 9.86us
hyperscan - 1372.1 MB/s - 6.80ms
icu 186.1 MB/s 337.7 MB/s 11.43us 3.03us
java/hotspot 43.0 MB/s 115.9 MB/s - -
javascript/v8 271.8 MB/s 293.2 MB/s - -
pcre2 952.6 MB/s 1479.4 MB/s 3.60us 873.00ns
pcre2/jit 1215.1 MB/s 1016.3 MB/s 20.36us 4.82us
perl 103.6 MB/s 138.8 MB/s - -
python/re 96.3 MB/s 161.6 MB/s 209.26us 48.18us
python/regex 99.6 MB/s 114.5 MB/s 685.11us 134.81us
re2 538.6 MB/s 1000.6 MB/s 70.54us 9.33us
regress 266.4 MB/s 701.9 MB/s 8.68us 2.05us
rust/regex 679.0 MB/s 1475.2 MB/s 80.39us 20.55us
rust/regex/meta 1733.3 MB/s 1851.2 MB/s 87.29us 15.02us
rust/regexold 635.4 MB/s 1378.8 MB/s 70.53us 18.21us
Show individual benchmark parameters.

full

Parameter Value
full name curated/09-aws-keys/full
model grep-captures
regex (('|")((?:ASIA|AKIA|AROA|AIDA)([A-Z0-7]{16}))('|").*?(\n^.*?){0,4}(('|")[a-zA-Z0-9+/]{40}('|"))+|('|")[a-zA-Z0-9+/]{40}('|").*?(\n^.*?){0,3}('|")((?:ASIA|AKIA|AROA|AIDA)([A-Z0-7]{16}))('|"))+
case-insensitive false
unicode false
haystack-path wild/cpython-226484e4.py
count(.*) 0

quick

Parameter Value
full name curated/09-aws-keys/quick
model grep
regex ((?:ASIA|AKIA|AROA|AIDA)([A-Z0-7]{16}))
case-insensitive false
unicode false
haystack-path wild/cpython-226484e4.py
count(.*) 0

compile-full

Parameter Value
full name curated/09-aws-keys/compile-full
model compile
regex (('|")((?:ASIA|AKIA|AROA|AIDA)([A-Z0-7]{16}))('|").*?(\n^.*?){0,4}(('|")[a-zA-Z0-9+/]{40}('|"))+|('|")[a-zA-Z0-9+/]{40}('|").*?(\n^.*?){0,3}('|")((?:ASIA|AKIA|AROA|AIDA)([A-Z0-7]{16}))('|"))+
case-insensitive false
unicode false
haystack "AIDAABCDEFGHIJKLMNOP""aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa [.. snip ..]
count(.*) 1

compile-quick

Parameter Value
full name curated/09-aws-keys/compile-quick
model compile
regex ((?:ASIA|AKIA|AROA|AIDA)([A-Z0-7]{16}))
case-insensitive false
unicode false
haystack AIDAABCDEFGHIJKLMNOP
count(.*) 1

bounded-repeat

This group of benchmarks measures how well regex engines do with bounded repeats. Bounded repeats are sub-expressions that are permitted to match up to some fixed number of times. For example, a{3,5} matches 3, 4 or 5 consecutive a characters. Unlike unbounded repetition operators, the regex engine needs some way to track when the bound has reached its limit. For this reason, many regex engines will translate a{3,5} to aaaa?a?. Given that the bounds may be much higher than 5 and that the sub-expression may be much more complicated than a single character, bounded repeats can quickly cause the underlying matcher to balloon in size.

We measure three different types of bounded repeats:

  • A search for a number of consecutive letters, both ASCII only and Unicode aware.
  • A search for certain types of words surrounding a Result type in Rust source code.
  • A search for consecutive words, all beginning with a capital letter.

We also include measurements for the compilation time of the last two.

Hyperscan does unusually well here, particularly for an automata oriented engine. It's plausible that it has some specific optimizations in place for bounded repeats.

rust/regex slows down quite a bit on the context regex. Namely, the context regex is quite gnarly and its (?s:.) sub-expression coupled with the bounded repeat causes a large portion of its transition table to get filled out. This in turn results in more time than usual being spent actually building the lazy DFA's transition table during a search. Typically, the lazy DFA's transition table is built pretty quickly and then mostly reused on subsequent searches. But in this case, the transition table exceeds the lazy DFA's cache capacity and results in the cache getting cleared. However, the rate at which new transitions are created is still low enough that the lazy DFA is used instead of falling back to a slower engine.

Engine letters-en letters-ru context capitals compile-context compile-capitals
dotnet/compiled 263.9 MB/s 191.4 MB/s 333.6 MB/s 871.6 MB/s 33.66us 28.58us
dotnet/nobacktrack 143.1 MB/s 103.7 MB/s 53.5 MB/s 559.4 MB/s 199.41us 48.27us
go/regexp 29.6 MB/s 27.4 MB/s 29.3 MB/s 53.3 MB/s 75.23us 55.08us
hyperscan 732.9 MB/s 265.8 MB/s 499.8 MB/s 2.7 GB/s 24.63ms 660.49us
icu 50.9 MB/s 70.0 MB/s 71.2 MB/s 266.7 MB/s 4.01us 2.80us
java/hotspot 83.5 MB/s 155.2 MB/s 74.4 MB/s 126.4 MB/s - -
javascript/v8 149.0 MB/s 57.3 MB/s 133.9 MB/s 723.8 MB/s - -
pcre2 70.8 MB/s 404.2 KB/s 76.7 MB/s 577.7 MB/s 4.40us 29.29us
pcre2/jit 335.0 MB/s 286.7 MB/s 376.8 MB/s 1554.6 MB/s 13.11us 36.76us
perl 68.8 MB/s 50.1 MB/s 88.2 MB/s 216.2 MB/s - -
python/re 73.0 MB/s - 68.9 MB/s 66.5 MB/s 57.55us 31.96us
python/regex 34.1 MB/s 75.6 MB/s 33.5 MB/s 267.4 MB/s 149.66us 74.77us
re2 493.5 MB/s 5.5 MB/s 94.4 MB/s 982.2 MB/s 93.35us 122.72us
regress 162.9 MB/s 30.2 MB/s 163.5 MB/s 404.5 MB/s - 1.22us
rust/regex 610.4 MB/s 539.4 MB/s 21.1 MB/s 825.6 MB/s 42.59us 62.57us
rust/regex/meta 677.9 MB/s 628.3 MB/s 101.0 MB/s 825.6 MB/s 59.17us 59.80us
rust/regexold 626.3 MB/s 545.8 MB/s 19.4 MB/s 825.6 MB/s 41.13us 67.69us
Show individual benchmark parameters.

letters-en

Parameter Value
full name curated/10-bounded-repeat/letters-en
model count
regex [A-Za-z]{8,13}
case-insensitive false
unicode false
haystack-path opensubtitles/en-sampled.txt
count(hyperscan) 3724
count(.*) 1833

letters-ru

Parameter Value
full name curated/10-bounded-repeat/letters-ru
model count
regex \p{L}{8,13}
case-insensitive false
unicode true
haystack-path opensubtitles/ru-sampled.txt
count(hyperscan) 8570
count(.*) 3475

context

Parameter Value
full name curated/10-bounded-repeat/context
model count
regex [A-Za-z]{10}\s+[\s\S]{0,100}Result[\s\S]{0,100}\s+[A-Za-z]{10}
case-insensitive false
unicode false
haystack-path rust-src-tools-3b0d4813.txt
count(hyperscan) 109
count(.*) 53

capitals

Parameter Value
full name curated/10-bounded-repeat/capitals
model count
regex (?:[A-Z][a-z]+\s*){10,100}
case-insensitive false
unicode false
haystack-path rust-src-tools-3b0d4813.txt
count(hyperscan) 237
count(.*) 11

compile-context

Parameter Value
full name curated/10-bounded-repeat/compile-context
model compile
regex [A-Za-z]{10}\s+(?s:.){0,100}Result(?s:.){0,100}\s+[A-Za-z]{10}
case-insensitive false
unicode false
haystack abcdefghij blah blah blah Result blib blab klmnopqrst
count(.*) 1

compile-capitals

Parameter Value
full name curated/10-bounded-repeat/compile-capitals
model compile
regex (?:[A-Z][a-z]+\s*){10,100}
case-insensitive false
unicode false
haystack Crazy Janey Mission Man Wild Billy Greasy Lake Hazy Davy Kil [.. snip ..]
count(hyperscan) 12
count(.*) 1

unstructured-to-json

These benchmarks come from a task that converts unstructured log data to structured JSON data. It works by iterating over every line in the log file and parsing various parts of each line into different sections using capture groups. The regex matches every line, so any fast logic design to reject non-matches will generally penalize regex engines here.

The original regex looks like this:

(?x)
^
(?P<timestamp>[^\ ]+\ [^\ ]+)

[\ ](?P<level>[DIWEF])[1234]:[\ ]

(?P<header>
    (?:
        (?:
            \[ [^\]]*? \] | \( [^\)]*? \)
        ):[\ ]
    )*
)

(?P<body>.*?)

[\ ]\{(?P<location>[^\}]*)\}
$

(The actual regex is flattened since not all engines support verbose mode. We also remove the names from each capture group.)

pcre2/jit does really well here. I'm not personally familiar with how PCRE2's JIT works, but if I had to guess, I'd say there are some clever optimizations with respect to the [^ ]+ (and similar) sub-expressions in this regex.

Otherwise, the backtracking engines generally outperform the automata engines in this benchmark. Interestingly, all of re2, go/regexp and rust/regex principally use their own bounded backtracking algorithms. But it looks like "proper" backtrackers tend to be better optimized than the ones found in RE2 and its descendants. (Bounded backtracking does have to pay for checking that no combination of haystack position and NFA state is visited more than once, but even removing that check does not bring, e.g., rust/regex up to speeds similar to other backtrackers.)

Engine extract compile
dotnet/compiled 552.4 MB/s 44.52us
dotnet/nobacktrack 17.3 MB/s 493.80us
go/regexp 82.6 MB/s 21.19us
icu 94.7 MB/s 7.84us
java/hotspot 222.5 MB/s -
javascript/v8 979.9 MB/s -
pcre2 208.5 MB/s 1.37us
pcre2/jit 1580.8 MB/s 7.12us
perl 146.4 MB/s -
python/re 119.9 MB/s 89.58us
python/regex 125.5 MB/s 275.62us
re2 120.1 MB/s 9.47us
regress 286.1 MB/s 3.99us
rust/regex 93.0 MB/s 17.98us
rust/regex/meta 112.5 MB/s 19.93us
rust/regexold 93.2 MB/s 14.05us
Show individual benchmark parameters.

extract

Parameter Value
full name curated/11-unstructured-to-json/extract
model grep-captures
regex-path wild/unstructured-to-json.txt
case-insensitive false
unicode false
haystack-path wild/unstructured-to-json.log
count(.*) 600

compile

Parameter Value
full name curated/11-unstructured-to-json/compile
model compile
regex-path wild/unstructured-to-json.txt
case-insensitive false
unicode false
haystack 2022/06/17 06:25:22 I4: [17936:140245395805952:(17998)]: (8f [.. snip ..]
count(.*) 1

dictionary

This benchmark highlights how well each regex engine does searching for a small dictionary of words. The dictionary is made up of about 2,500 words, where every word is at least 15 bytes in length. The number of words was chosen to be small enough that most regex engines can execute a search in reasonable time. The bigger minimum length of each word was chosen in order to make this a throughput benchmark. That is, there is only one match found here, so this benchmark is measuring the raw speed with which an engine can handle a big alternation of plain literals.

Most regex engines run quite slowly here. perl, re2 and rust/regex lead the pack with throughput measured in MB/s, while the rest are measured in KB/s. One might think that this is a benchmark that would manifest as a bright dividing line between finite automata engines and backtracking engines. Namely, finite automata engines should handle all of the alternations in "parallel," where as backtrackers will essentially try to match each alternate at each position in the haystack (owch). Indeed, this seems mostly true, but perl (a backtracker) does quite well while go/regexp (a finite automata engine) does quite poorly. Moreover, what explains the differences between perl, re2 and rust/regex?

There are several knots to untangle here.

First, we'll tackle the reason why go/regexp has a poor showing here. The answer lies in how the Thompson NFA construction works. A Thompson NFA can be built in worst case linear time (in the size of the pattern), but in exchange, it has epsilson transitions in its state graph. Epsilon transitions are transitions in a finite state machine that are followed without consuming any input. In a case like foo|bar|quux, you can think of the corresponding Thompson NFA (very loosely) as creating a single starting state with three epsilon transitions to each of foo, bar and quux. In a Thompson NFA simulation (i.e., a regex search using a Thompson NFA), all of these epsilon transitions have to be continually followed at every position in the haystack. With a large number of alternations, the amount of time spent shuffling through these epsilon transitions can be quite enormous. While the search time remains linear with respect to the size of the haystack, the "constant" factor here (i.e., the size of the regex pattern) can become quite large. In other words, a Thompson NFA scales poorly with respect to the size of the pattern. In this particular case, a Thompson NFA just doesn't do any better than a backtracker.

The second knot to untangle here is why perl does so well despite being a backtracker. While I'm not an expert on Perl internals, it appears to do well here because of something called a trie optimization. That is, Perl's regex engine will transform large alternations like this into an equivalent but much more efficient structure by essentially building a trie and encoding it into the regex itself. It turns out that rust/regex does the same thing, because the exact same optimization helps a backtracker in the same way it helps a Thompson NFA simulation. The optimization exploits the fact that the branches in the alternation are not truly independent and actually share a lot of overlap. Without the optimization, the branches are treated as completely independent and one must brute force their way through each one.

So what does this trie optimization look like? Consider a regex like zapper|z|zap. There is quite a bit of redundant structure. With some care, and making sure to preserve leftmost-first match semantics, it can be translated to the equivalent pattern z(apper||ap). Notice how in the pattern we started with, the alternation needs to be dealt with for every byte in the haystack, because you never know which branch is going to match, if any. But in the latter case, you now don't even need to consider the alternation until the byte z matches, which is likely to be quite rare.

Indeed, the algorithm for constructing such a pattern effectively proceeds by building a trie from the original alternation, and then converting the trie back to whatever intermediate representation the regex engine uses.

The last knot to untangle is to explain the differences between perl, re2 and rust/regex. Perl still uses a backtracking strategy, but with the trie optimization described above, it can try much fewer things for each position in the haystack. But what's going on with re2 and rust/regex? In this case, re2 uses the Thompson NFA simulation, but re2 does not use the trie optimization described above, so it gets stuck in a lot epsilon transition shuffling. Finally, rust/regex does the trie optimization and uses its lazy DFA internally for this case. re2 probably could too, but both libraries use various heuristics for deciding which engine to use. In this case, the regex might be too big for re2 to use its lazy DFA.

OK, that wraps up discussion of the single benchmark. But what is the multi benchmark? Where single represents combining all words in the dictionary into a single pattern, multi represents a strategy where each word is treated as its own distinct pattern. In the single case, Hyperscan actually rejects the pattern for being too large, but is happy to deal with it if each word is treated as its own pattern. The main semantic difference between these strategies is that the multi approach permits not only identifying where a match occurred, but which word in the dictionary matched. And this is done without using capture groups.

Hyperscan does really well here. While its source code is difficult penetrate, my understanding is that Hyperscan uses its "FDR" algorithm here, which is essentially SIMD-ified variant of multi-substring Shift-Or. This benchmark represents Hyperscan's bread and butter: multi-pattern search.

rust/regex actually does worse in the multi case versus the single case. rust/regex's support for multi-pattern search is still young, and in particular, the multi-pattern case currently inhibits the trie optimization discussed above.

Finally, we also include compile-time benchmarks for each of the above cases in order to give an idea of how long it takes to build a regex from a dictionary like this. I don't have much to say here other than to call out the fact that the trie optimization does have a meaningful impact on regex compile times in the rust/regex case at least.

Engine single multi compile-single compile-multi
dotnet/compiled 1429.5 KB/s - 11.36ms -
go/regexp 573.0 KB/s - 15.35ms -
hyperscan - 8.3 GB/s - 20.22ms
icu 146.4 KB/s - 1.50ms -
java/hotspot 109.0 KB/s - - -
javascript/v8 28.6 KB/s - - -
perl 131.9 MB/s - - -
python/re 174.6 KB/s - 34.50ms -
python/regex 135.8 KB/s - 115.78ms -
re2 5.6 MB/s - 4.18ms -
regress 84.2 KB/s - 2.97ms -
rust/regex 179.4 MB/s - 8.85ms -
rust/regex/meta 717.2 MB/s 184.2 MB/s 7.82ms 15.83ms
rust/regexold 29.1 KB/s - 7.36ms -
Show individual benchmark parameters.

single

Parameter Value
full name curated/12-dictionary/single
model count
regex-path dictionary/english/length-15.txt
case-insensitive false
unicode false
haystack-path opensubtitles/en-medium.txt
count(.*) 1

dotnet/nobacktrack is omitted because the regex is too large.

hyperscan is omitted because the regex is too large.

pcre2/* are omitted because the regex is too large.

multi

Parameter Value
full name curated/12-dictionary/multi
model count
regex-path dictionary/english/length-15.txt
case-insensitive false
unicode false
haystack-path opensubtitles/en-medium.txt
count(.*) 1

Only hyperscan and rust/regex/meta are included because they are the only regex engines to support multi-pattern regexes.

compile-single

Parameter Value
full name curated/12-dictionary/compile-single
model compile
regex-path dictionary/english/length-15.txt
case-insensitive false
unicode false
haystack Zubeneschamali's
count(.*) 1

dotnet/nobacktrack is omitted because the regex is too large.

hyperscan is omitted because the regex is too large.

java/hotspot is omitted because we currently don't benchmark Perl regex compilation.

javascript/v8 is omitted because we currently don't benchmark Perl regex compilation.

pcre2/* are omitted because the regex is too large.

perl is omitted because we currently don't benchmark Perl regex compilation.

compile-multi

Parameter Value
full name curated/12-dictionary/compile-multi
model compile
regex-path dictionary/english/length-15.txt
case-insensitive false
unicode false
haystack Zubeneschamali's
count(.*) 1

Only hyperscan and rust/regex/meta are included because they are the only regex engines to support multi-pattern regexes.

noseyparker

This benchmark measures how well regex engines do when asked to look for matches for many different patterns. The patterns come from the Nosey Parker project, which finds secrets and sensitive information in textual data and source repositories. Nosey Parker operates principally by defining a number of rules for detecting secrets (for example, AWS API keys), and then looking for matches of those rules in various corpora. The rules are, as you might have guessed, defined as regular expressions.

I went through each of its rules and extracted a total of 96 regular expressions, as of commit be8c26e8. These 96 regexes make up the single and multi benchmarks below, with single corresponding to joining all of patterns into one big alternation and multi corresponding to treating each pattern as its own regex. In the latter case, only the rust/regex/meta and hyperscan engines are measured, since they are the only ones to support multi-regex matching.

This is a particularly brutal benchmark. Most regex engines can't deal with it at all, and will either reject it at compilation time for being too big or simply take longer than we're willing to wait. (rebar imposes a reasonable timeout for all benchmarks, and if the timeout is exceeded, no measurements are collected.)

Hyperscan is in its own class here. Hyperscan was purpose built to deal with the multi-pattern use case, and it deals with it very well here. The specific patterns also put this in its wheelhouse because they all have some kind of literal string in them. Hyperscan uses a literal searching and finite automata decomposition strategy to quickly identify candidate matches and avoids doing redundant work. Although how it all fits together and avoids pitfalls such as worst case quadratic search time doesn't appear to be written down anywhere.

rust/regex/meta just barely does serviceably here. It uses its lazy DFA to handle this regex, but with the default cache sizes, profiling suggests that it is spending a lot of its time building the DFA. It's plausible that increasing the cache size for such a big regex would let it execute searches faster.

pcre2/jit doesn't do as well here, but one might expect that because it is a backtracking engine. With that said, no other backtracking engine could deal with this regex at all, so pcre2/jit is doing quite well relative to other backtracking engines.

Finally, we also include compile time benchmarks for each of the single and multi cases to give a general sense of how long this monster regex takes to build.

Engine single multi compile-single compile-multi
hyperscan 4.3 GB/s 4.3 GB/s 223.89ms 138.43ms
pcre2/jit 12.9 MB/s - 606.09us -
rust/regex/meta 129.1 MB/s 102.4 MB/s 2.44ms 2.81ms
rust/regexold 9.3 MB/s - 4.29ms -
Show individual benchmark parameters.

single

Parameter Value
full name curated/13-noseyparker/single
model count
regex-path wild/noseyparker.txt
case-insensitive false
unicode false
haystack-path wild/cpython-226484e4.py
count(hyperscan) 241
count(.*) 55
  • dotnet/compiled is omitted because it times out.
  • dotnet/nobacktrack is omitted because the regex is too big.
  • go/regexp is omitted because there are bounded repeats that exceed its limit.
  • icu is omitted because it times out.
  • java/hotspot is omitted because it times out.
  • javascript/v8 is omitted because it doesn't support inline flags.
  • pcre2 is omitted because it times out.
  • perl is omitted because it times out.
  • python/* is omitted because it times out.
  • re2 is omitted because it seems to fail and reports a count of 0.
  • regress is omitted because it doesn't support inline flags.

multi

Parameter Value
full name curated/13-noseyparker/multi
model count
regex-path wild/noseyparker.txt
case-insensitive false
unicode false
haystack-path wild/cpython-226484e4.py
count(hyperscan) 241
count(.*) 55

Only hyperscan and rust/regex/meta are included because they are the only regex engines to support multi-pattern regexes.

compile-single

Parameter Value
full name curated/13-noseyparker/compile-single
model compile
regex-path wild/noseyparker.txt
case-insensitive false
unicode false
haystack TWITTER_API_KEY = 'UZYoBAfBzNace3mBwPOGYw'
count(.*) 1

We only include the engines that are measured in the single benchmark.

compile-multi

Parameter Value
full name curated/13-noseyparker/compile-multi
model compile
regex-path wild/noseyparker.txt
case-insensitive false
unicode false
haystack TWITTER_API_KEY = 'UZYoBAfBzNace3mBwPOGYw'
count(.*) 1

We only include the engines that are measured in the multi benchmark.

About

A biased barometer for gauging the relative speed of some regex engines on a curated set of tasks.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •