]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/optimisations.mdwn
* Add an orphans plugin for finding pages that nothing links to.
[ikiwiki.git] / doc / todo / optimisations.mdwn
1 * Render each changed page only once. Currently pages are rendered up to 4
2   times in worst case (8 times if there's an rss feed).
3
4   The issue is that rendering a page is used to gather info like the links
5   on the page that can effect rendering other pages. So it needs a
6   multi-pass system. But rendering the whole page in each pass is rather
7   obscene.
8
9 * Don't render blog archive pages unless a page is added/removed. Just
10   changing a page doesn't affect the archives as they show only the title.
11
12 * Look at breaking the relatively rarely used blogging stuff out of
13   Render.pm, into its own module.
14
15 * Look at splitting up CGI.pm. But note that too much splitting can slow
16   perl down.