forked from kwatch/template-engine-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathREADME.txt
49 lines (38 loc) · 1.61 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
==============================================================================
JAVA TEMPLATE ENGINE BENCHMARKER v1.0
==============================================================================
This is a benchmark program for a collection of Java template engines:
* stringbuilder - the baseline. manually created page using StringBulder
* freemarker - v2.3.19
* velocity - v1.7
* rythm - v1.0-b2
* httl - 1.0.7
* beetl - 1.2
* jamon - 2.3
* jangod - no version info
* thymeleaf - 2.0.15
* mustache - 0.8.12
* handlebars - 2.2.0
You need apache ant to run the program, just type "ant" and it will start.
This program accept parameters to configure how to run the benchmark:
1. out: specify how to output rendering result, could be:
* os: output to OutputStream (default);
* w: output to Writer
* s: return String
2. wtimes: specify number of warm up loops.
default: 100
3. ntimes: specify number of benchmark loops.
default: 10000
4. buf: specify whether use BufferedWriter or OS
default: true
5. rythm.new: for rythm engine only. specify whether use new API to
run rythm benchmark or not. Default: false
The arguments should be passed in using property setting. e.g
ant -Dout=w \
-Dwtimes=10 \
-Dntimes=1000 \
-Dbuf=false \
-Drythm.new=true
Should you have any suggestion or comments, please raise issue via
https://github.com/greenlaw110/template-engine-benchmarks/issues
Note since jangod and thymeleaf is way slow than all others, they are not put into the default target. To benchmark jangod and thymeleaf, run `ant all`