Wiki source code of Performances

Version 5.1 by Sergiu Dumitriu on 2007/12/13

Show last authors
1 #startfloatingbox()
2 *Contents*
3 #toc ("2" "3" "")
4 #endfloatingbox()
5
6 1 Performances
7
8 1.1 Database Indexes
9
10 Make sure you've set [Database indexes>Database Administration>]. This is especially important when you start having lots of documents.
11
12 1.1 Panels
13
14 Some Panels take more resources than others. For example the Navigation panel should NOT be used for wikis with a lot of documents since it displays all documents in the wiki. In the future that Panel should be improve for performances but that's not the case right. Originally this Panel was only meant as a starting point. A better approach is to use a Quick Links Panel as we've now set up in the default XWiki Enterprise wiki version 1.1 (we've removed the default usage of the Navigation Panel in that version).
15
16 1.1 Statistics
17
18 The statistics module is off by default since it's quite Database intensive. If you don't need it you should turn it off.
19
20 1.1 Cache sizes
21
22 TODO: Recommend cache sizes here
23
24 1.1 Rendering cache
25
26 Some pages are complex to render (they may aggregate outside data for example or do complex and slow queries). For these pages you can add the following to their content to cache them after they are rendered. For example to cache the rendered content for 60 seconds you would add:
27
28 {code:none}
29 $context.setCacheDuration(60)
30 {code}
31
32 1.1 Backlinks
33
34 While a pretty neat feature, keeping track of the backlinks has a medium impact on the document saving time and a minor impact on the document loading time. If you feel that your wiki does not need backlinks, you can safely disable them with the following line in <tt>xwiki.cfg</tt>:
35 {code:none}
36 xwiki.backlinks=0
37 {code}
38
39 1.1 Versioning
40
41 One of the key features of any wiki system, versioning greatly affects the database size and the document update time. If you are sure your wiki does not need to keep track of all the changes and you will never need to revert documents to a previous version, then you can add the following line in <tt>xwiki.cfg</tt>
42 {code:none}
43 xwiki.store.versioning=0
44 {code}

Get Connected