This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
clojure-template-benchmarks/README.md

47 lines
714 B
Markdown
Raw Normal View History

2013-01-30 02:25:33 -05:00
# clojure-template-benchmarks
2013-01-30 02:30:18 -05:00
I decided to do some decent Clojure templating benchmarks:
2013-01-30 02:25:33 -05:00
2013-01-30 02:30:18 -05:00
Template Engines tested:
str
hiccup
clabango (string literals)
clabango (from filesystem)
2013-01-30 02:25:33 -05:00
2013-01-30 02:30:18 -05:00
Test cases:
simple data injection
small list (50 items) generation
big list (1000 items) generation
2013-01-30 02:25:33 -05:00
2013-01-30 02:30:18 -05:00
<table>
2013-01-30 02:25:33 -05:00
2013-01-30 02:30:18 -05:00
<tr>
<th>Template Engine</th>
<th>Simple Data Injection</th>
<th>Small List</th>
<th>Big List</th>
</tr>
<tr>
<td>str</td>
</tr>
<tr>
<td>hiccup</td>
</tr>
<tr>
<td>clabango (string)</td>
</tr>
<tr>
<td>clabango (files)</td>
</tr>
2013-01-30 02:25:33 -05:00
2013-01-30 02:30:18 -05:00
</table>
str
hiccup
clabango string literals
clabango from filesystem
Copyright © 2013 bitemyapp