Anonymous | Login | Signup for a new account | 12-17-2024 11:59 PST |
Main | My View | View Issues | Change Log | Docs |
Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | ||||||||
ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||||
0003195 | [Quercus] | major | always | 12-24-08 21:52 | 12-27-08 15:40 | ||||
Reporter | koreth | View Status | public | ||||||
Assigned To | ferg | ||||||||
Priority | normal | Resolution | fixed | ||||||
Status | closed | Product Version | 4.0.0 | ||||||
Summary | 0003195: Anchored regexes take time proportional to subject string size | ||||||||
Description |
<?php $sizes = array(1000, 10000, 100000, 1000000, 10000000); foreach ($sizes as $size) { $str = str_repeat('abcde', $size); $start_time = microtime(true); $match = preg_match('/x/A', $str); $end_time = microtime(true); printf("size %d took %0.6fsec \n", $size, $end_time - $start_time); } In regular PHP, each run takes more or less the same amount of time. In Quercus, each run takes longer than the last by a factor of 10. The behavior is also there if you use /^x/ instead of /x/A to anchor the regex. This is making some of our on-the-fly JavaScript rewriting run so slowly the scripts time out. |
||||||||
Additional Information | |||||||||
Attached Files | |||||||||
|
Notes | |
(0003674) koreth 12-24-08 22:04 |
One other note is that this only seems to be the case for failed matches. If a match succeeds it does so right away. |
(0003676) ferg 12-27-08 15:40 |
php/4e82 |
Mantis 1.0.0rc3[^]
Copyright © 2000 - 2005 Mantis Group
32 total queries executed. 28 unique queries executed. |