Commit b04c5c7660 for perl
commit b04c5c7660a607110d73f592c6758279ad8429ff
Author: David Mitchell <davem@iabyn.nospamdeletethisbit.com>
Date: Sun Sep 20 15:22:02 2026 +0100
perldelta: performance of regex super-linear cache
diff --git a/pod/perldelta.pod b/pod/perldelta.pod
index 9e353a802f..17d4c9b128 100644
--- a/pod/perldelta.pod
+++ b/pod/perldelta.pod
@@ -89,7 +89,11 @@ There may well be none in a stable release.
=item *
-XXX
+Changes have been made to the "super-linear cache", which is used to avoid
+excessive backtracking in some regexes which include quantifiers on
+variable-length sub-patterns, such as C<(a|bc)*> and C<(ab+){2,}>. This
+change may reduce the amount of backtracking that takes place, and may
+reduce the amount of temporary memory used for the cache.
=back