forked from kwatch/template-engine-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 17
greenlaw110/template-engine-benchmarks
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
============================================================================== 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`
About
benchmark collection for template engine
Resources
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- Java 70.8%
- HTML 29.2%