trail: Avoid massive slowdown caused by pagetemplate hook when displaying dynamic cgi pages, which cannot use trail anyway.
This seemed to be due to the pagetemplate hook calling prerender. I've observed this making it take *minutes* for the signin page to be displayed. ltracing ikiwiki showed it was matching pagespecs a lot. It may be that this is still a speed pain point when rendering pages, not just for CGI. So more work may be needed here.master
parent
066cabd5a6
commit
e5d82ef868
|
@ -411,6 +411,8 @@ sub pagetemplate (@) {
|
||||||
my $page = $params{page};
|
my $page = $params{page};
|
||||||
my $template = $params{template};
|
my $template = $params{template};
|
||||||
|
|
||||||
|
return unless length $page;
|
||||||
|
|
||||||
if ($template->query(name => 'trails') && ! $recursive) {
|
if ($template->query(name => 'trails') && ! $recursive) {
|
||||||
prerender();
|
prerender();
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,8 @@ ikiwiki (3.20121213) UNRELEASED; urgency=low
|
||||||
are disabled. (smcv)
|
are disabled. (smcv)
|
||||||
* poll: Add expandable option to allow users to easily add new choices to
|
* poll: Add expandable option to allow users to easily add new choices to
|
||||||
a poll.
|
a poll.
|
||||||
|
* trail: Avoid massive slowdown caused by pagetemplate hook when displaying
|
||||||
|
dynamic cgi pages, which cannot use trail anyway.
|
||||||
|
|
||||||
-- Joey Hess <joeyh@debian.org> Sat, 22 Dec 2012 16:15:24 -0400
|
-- Joey Hess <joeyh@debian.org> Sat, 22 Dec 2012 16:15:24 -0400
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue