Wiki source code of Performances

Version 13.1 by Vincent Massol on 2008/01/18

Hide last authors
Vincent Massol 3.1 1 #startfloatingbox()
2 *Contents*
3 #toc ("2" "3" "")
4 #endfloatingbox()
5
Vincent Massol 1.1 6 1 Performances
7
Vincent Massol 10.1 8 Here are some tips to increase XWiki's performances.
9
Vincent Massol 9.1 10 1.1 Memory
11
12 You need to configure your Servlet container so that XWiki has enough memory. You'll need to tune the value to your need. You should check the logs and see if there are any out of memory errors. A good default value is 384MB (-Xmx384m).
13
Vincent Massol 13.1 14 Here are the values used for xwiki.org's web site:
15 {code:none}
16 CATALINA_OPTS="-server -Xms128m -Xmx1024m -XX:MaxPermSize=128m -Dfile.encoding=utf-8 -Djava.awt.headless=true -XX:+UseParallelGC -XX:MaxGCPauseMillis=100"
17 {code}
18
Vincent Massol 1.1 19 1.1 Database Indexes
20
21 Make sure you've set [Database indexes>Database Administration>]. This is especially important when you start having lots of documents.
22
23 1.1 Panels
24
25 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).
26
Vincent Massol 1.2 27 1.1 Statistics
Vincent Massol 1.1 28
Vincent Massol 1.2 29 The statistics module is off by default since it's quite Database intensive. If you don't need it you should turn it off.
30
Sergiu Dumitriu 7.1 31 1.1 Monitoring
32
33 More a developer-oriented feature, XWiki can monitor its own code, reporting the time spent for each sub-component activated during a request. While the monitoring code isn't time consuming, it increases the memory consumption a bit, and the create/start/stop/log/destroy calls are spread all around the code, so you will save a lot of method calls by disabling this. You can do that by setting the following line in <tt>xwiki.cfg</tt>:
34 {code:null}
35 xwiki.monitor=0
36 {code}
37
Vincent Massol 1.2 38 1.1 Cache sizes
39
Vincent Massol 8.1 40 Tune the document cache in <tt>xwiki.cfg</tt>. The value depends on how much memory you have. The higher the better. A good reasonable value is 1000.
Vincent Massol 2.1 41
Vincent Massol 8.1 42 {code:none}
43 xwiki.store.cache.capacity=1000
44 {code}
45
Vincent Massol 2.1 46 1.1 Rendering cache
47
48 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:
49
50 {code:none}
51 $context.setCacheDuration(60)
52 {code}
53
Vincent Massol 12.1 54 1.1 Merge the CSS files
Vincent Massol 11.1 55
Vincent Massol 12.1 56 In order to reduce the number of requests and files that are downloaded from the browser or client, it could help to merge all XWiki CSS files into a single one. See the [Merge CSS Snippet>code:Snippets.MergeCSSSnippet]
Vincent Massol 11.1 57
Sergiu Dumitriu 4.1 58 1.1 Backlinks
59
Sergiu Dumitriu 5.1 60 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>:
Sergiu Dumitriu 4.1 61 {code:none}
62 xwiki.backlinks=0
63 {code}
Sergiu Dumitriu 5.1 64
65 1.1 Versioning
66
67 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>
68 {code:none}
69 xwiki.store.versioning=0
70 {code}
Sergiu Dumitriu 6.1 71
72 1.1 Wiki syntax features
73
74 If you don't plan to use all of the wiki features, like the --strikethrough-- filter, the automatic http links filter, the SVG, Laszlo or style macros, you can disable them in <tt>xwiki-core-\*.jar/META-INF/services/com.xpn.xwiki.render.\*</tt>. The wiki rendering is the most costly operation in the rendering process, so any disabled feature counts.

Get Connected