X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/c4e8a8c62ff7c758ce129656f9656ab22e0f47b0..4b596ea5c67989b2d7f8a5ab90a73b19a4bb7d93:/doc/todo/optimisations.mdwn?ds=inline

diff --git a/doc/todo/optimisations.mdwn b/doc/todo/optimisations.mdwn
index 40ffaf548..b8c4fa0da 100644
--- a/doc/todo/optimisations.mdwn
+++ b/doc/todo/optimisations.mdwn
@@ -1,11 +1,15 @@
 Ikiwiki has already been optimised a lot, however..
 
-* 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.
 
+  > 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]]