var loremString = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
/(?:z)+/.exec(loremString)
/z+/.exec(loremString)
/lab(?:o)rum/.exec(loremString)
/laborum/.exec(loremString)
loremString.indexOf('laborum')
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
unneededNonCaptureRE | |
noNonCaptureRE | |
anotherUnneededNonCapture | |
anotherNoNonCapture | |
indexOf |
Test name | Executions per second |
---|---|
unneededNonCaptureRE | 4288846.5 Ops/sec |
noNonCaptureRE | 4287936.0 Ops/sec |
anotherUnneededNonCapture | 5368798.5 Ops/sec |
anotherNoNonCapture | 7372564.5 Ops/sec |
indexOf | 914122432.0 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks.
The provided JSON represents a benchmark test case for measuring the performance of different approaches to search for substrings in a string using regular expressions (regex) or built-in string methods. Here's what we'll cover:
Benchmark Definition:
The benchmark is named "Unnecessary non-capturing groups". The problem it addresses is whether adding unnecessary parentheses around a non-capturing group ((?:
) affects performance compared to not including them at all.
Script Preparation Code:
var loremString = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
This code prepares a sample string loremString
for testing.
Html Preparation Code:
null
There's no HTML preparation code provided, which means the test is purely JavaScript-based.
Individual Test Cases:
The benchmark consists of five test cases:
/z+/.exec(loremString)
: Using regex with a non-capturing group (?:
) and z
(zero-width match) character./z+/.exec(loremString)
: Same as above, but without the unnecessary parentheses around the non-capturing group./lab(?:o)rum/.exec(loremString)
: Using regex with an unnecessary non-capturing group ((?:
) and a substring search./laborum/.exec(loremString)
: Same as above, but without the unnecessary parentheses.loremString.indexOf('laborum')
: Using the built-in indexOf
method of the string.Performance Comparison:
The benchmark tests the performance of each approach by measuring the number of executions per second (ExecutionsPerSecond) on a specific browser version and platform.
Options Compared:
(?:
) and z
character vs. without it.Pros and Cons:
(?:
) and z
character:z
character, which can match zero characters.(?:
) and z
character:Other Considerations:
loremString
makes it easy to understand the testing scenario, but might not represent real-world usage.Alternatives:
If you need to benchmark similar scenarios or want to explore other optimization techniques, consider:
indexOf
) and regex.Keep in mind that microbenchmarking can be complex, and results may vary depending on specific hardware, software, and environment configurations.