ikiwiki/doc/todo/optimisations.mdwn

12 lines
500 B
Plaintext
Raw Normal View History

2006-10-28 07:10:13 +02:00
Ikiwiki has already been optimised a lot, however..
2006-03-24 05:04:37 +01:00
* Don't render blog archive pages unless a page is added/removed. Just
changing a page doesn't affect the archives as they show only the title.
* Look at splitting up CGI.pm. But note that too much splitting can slow
perl down.
* The backlinks calculation code is still O(N^2) on the number of pages.
If backlinks info were stored in the index file, it would go down to
constant time for iterative builds, though still N^2 for rebuilds.