-
-
Notifications
You must be signed in to change notification settings - Fork 863
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
config: simplify regex #313
Conversation
This optimizes for performance over simplicity, no? Just pointing out that this doesn't "simplify" as the title says |
@zenflow yes performance (or rather to avoid a possibly very long regexp), but I realize it's not that much faster
var data = Array.from({length: 4e5}, () => `dotenv_config${Math.random()<.3?'_':'.'}foobar-qux${Math.floor(1e16*Math.random()).toString(36)}${Math.random()<.7?'=':'.'}qu_ux_xu${Math.floor(1e16*Math.random()).toString(36)}`)
var re1 = () => {
data.forEach(val => {
const m = val.match(/^dotenv_config_(.+)=(.+)/);
});
};
var re2 = () => {
data.forEach(val => {
const m = val.match(/^dotenv_config_([^=]+)=(.+)$/);
})
};
var slice = () => {
data.forEach(val => {
const m = val.slice(14).split('=', 2);
})
};
bench(re1)
bench(re1)
bench(re2)
bench(re2)
bench(slice)
bench(slice)
bench(re1)
bench(re1)
bench(re2)
bench(re2)
bench(slice)
bench(slice)
function bench(fn) {
console.time(fn.name);
fn();
console.timeEnd(fn.name);
} |
Thanks for providing a benchmark to lay out the performance improvements. I'm not sure we should be optimizing for the use case of someone providing 400,000 command line arguments. I created a test on jsPerf using the newer option matcher from #304 and what I expect most people to be feeding https://jsperf.com/dotenv-cli-parsing/1 I'll leave this open for a bit so people can run the jsPerf test. I'm see the #304 implementation being ~40% faster. If that's the consensus, we can leave it as-is. |
Here's a bench on node: https://repl.it/@caub/dotenv-argv-parse (not a huge fan of jsperf, accurate benchmarks can be done with console.time or perf_hooks) I didn't even try to get it fast (.slice(1).forEach is surely 2x at least slower than a for loop) Just trying to avoid So indeed, regexp is faster, more readable too, but my HEAD^ commit version, let me revert then |
config.js
Outdated
process.argv.forEach(function (val, idx, arr) { | ||
var matches = val.match(/^dotenv_config_(.+)=(.+)/) | ||
// skip first argb, which is node command | ||
process.argv.slice(1).forEach(function (val) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
again, not specially optimized for perf, it really doesn't matter at that scale, it's just more readable I think
I like this new version much better because it doesn't sacrifice any simplicity/readability |
@caub thanks for the reference on explosive quantifiers! |
Will you update this or open a new PR against |
@@ -1,11 +1,9 @@ | |||
const re = /^dotenv_config_(.+)=(.+)/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this PR could be simplified to:
-const re = /^dotenv_config_(.+)=(.+)/
+const re = /^dotenv_config_([^=]+)=(.+)$/
additional tests are always welcomed
closing in favor of #325 |
@maxbeatty ok, you might want that .slice(1) there Line 3 in bfb2269
|
explosive quantifiers can be nasty, that one was probably ok, but I think it's better to be more restrictive