Revert back to using captured regex execution as it seems to be more effecient as the ovector can be used for working space even if it is not used for captures.

Warn when captures are used in the regex, but "capture" not specified.
This commit is contained in:
brectanus
2007-03-27 15:32:53 +00:00
parent 59928bfe60
commit 891859f9c5
4 changed files with 23 additions and 11 deletions

View File

@@ -8,7 +8,8 @@
* Do not log 'allow' action as intercepted in the debug log.
* Optimize regex execution to not capture unless 'capture' action used.
* Warn if a regular expression captures subexpressions, but the
"capture" action was not specified.
* Performance improvements in memory management.