in reply to experiencing slowness due to matching algorithm
I though regex here will be the fastest.
I have no idea why you thought that. Perhaps you could explain your reasoning?
An exact string match and an index match should beat 2 dynamic regexen into a cocked hat for speed.
if ($subpath eq $target || 0 == index $subpath, "$target/") {
Try profiling that and see if it improves matters for you.
🦛
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: experiencing slowness due to matching algorithm
by ovedpo15 (Pilgrim) on Jan 09, 2023 at 10:36 UTC | |
by hippo (Bishop) on Jan 09, 2023 at 11:28 UTC |
In Section
Seekers of Perl Wisdom