ikiwiki/doc/todo/optimisations.mdwn

16 lines
523 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
* Look at splitting up CGI.pm. But note that too much splitting can slow
perl down.
2008-10-02 23:52:20 +02:00
> It's split enough, or possibly more than enough, now. :-)
* 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.
2008-10-02 23:52:20 +02:00
> Seems to be O(Num Pages * Num Links in Page), or effectively O(N)
> pages for most wikis.
[[done]]