master
Joey Hess 2008-10-02 17:52:20 -04:00
parent c2c1438e49
commit ab2cc5040c
1 changed files with 7 additions and 0 deletions

View File

@ -3,6 +3,13 @@ Ikiwiki has already been optimised a lot, however..
* Look at splitting up CGI.pm. But note that too much splitting can slow
perl down.
> 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.
> Seems to be O(Num Pages * Num Links in Page), or effectively O(N)
> pages for most wikis.
[[done]]