https://github.com/pauldraper/scala-html-performance
Benchmarks for common Scala HTML templating libraries
https://github.com/pauldraper/scala-html-performance
Last synced: 12 months ago
JSON representation
Benchmarks for common Scala HTML templating libraries
- Host: GitHub
- URL: https://github.com/pauldraper/scala-html-performance
- Owner: pauldraper
- Created: 2017-06-11T23:43:31.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-12T02:59:35.000Z (about 9 years ago)
- Last Synced: 2025-01-09T07:35:27.466Z (over 1 year ago)
- Language: Scala
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Scala HTML Templating Benchmarks
## Run
Install sbt.
```sh
sbt test
```
## Templates
* [ScalaTags](http://www.lihaoyi.com/scalatags/): [scala/htmlperf/ScalaTags.scala](src/main/scala/htmlperf/ScalaTags.scala)
* [scala-xml](https://github.com/scala/scala-xml): [scala/htmlperf/ScalaXml.scala](src/main/scala/htmlperf/ScalaXml.scala)
* [Twirl](https://www.playframework.com/documentation/2.5.x/ScalaTemplates): [twirl/htmlperf/twirl.scala.html](src/main/twirl/htmlperf/twirl.scala.html)
## Results
| Size | ScalaTags 0.6.5 | scala-xml 1.0.6 | Twirl 1.3.2 |
|---:|---:|---:|---:|
| 2 | 0.34ms | 0.38ms | 0.46ms |
| 20 | 0.50ms | 0.86ms | 0.96ms |
| 200 | 2.59ms | 5.61ms | 3.47ms |