diff options
Diffstat (limited to 'IkiWiki/CGI.pm')
-rw-r--r-- | IkiWiki/CGI.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm index 3e4cbe4cf..424ce2c78 100644 --- a/IkiWiki/CGI.pm +++ b/IkiWiki/CGI.pm @@ -34,6 +34,13 @@ sub cgi_recentchanges ($) { #{{{ unlockwiki(); + # Optimisation: building recentchanges means calculating lots of + # links. Memoizing htmllink speeds it up a lot (can't be memoized + # during page builds as the return values may change, but they + # won't here.) + eval q{use Memoize}; + memoize("htmllink"); + my $template=template("recentchanges.tmpl"); $template->param( title => "RecentChanges", |