Needed proper benchmarking of frontend views (Note: Originally a fork of https://github.com/bitemyapp/clojure-template-benchmarks)
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.
Go to file
2013-01-29 23:30:18 -08:00
doc initial commit 2013-01-29 23:25:33 -08:00
src/clojure_template_benchmarks initial commit 2013-01-29 23:25:33 -08:00
test/clojure_template_benchmarks initial commit 2013-01-29 23:25:33 -08:00
.gitignore initial commit 2013-01-29 23:25:33 -08:00
project.clj initial commit 2013-01-29 23:25:33 -08:00
README.md basic readme 2013-01-29 23:30:18 -08:00

clojure-template-benchmarks

I decided to do some decent Clojure templating benchmarks:

Template Engines tested: str hiccup clabango (string literals) clabango (from filesystem)

Test cases: simple data injection small list (50 items) generation big list (1000 items) generation

<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>
str

hiccup

clabango string literals

clabango from filesystem

Copyright © 2013 bitemyapp