<script src="https://builds.handlebarsjs.com.s3.amazonaws.com/handlebars-v4.0.5.js"></script>
<script src="https://twitter.github.io/hogan.js/builds/3.0.1/hogan-3.0.1.js"></script>
<script src="https://rawgit.com/janl/mustache.js/v2.2.1/mustache.js"></script>
<script src="https://rawgit.com/satchmorun/mote/master/mote.js"></script>
var templateParsed = "<strong>This is a slightly more complicated {{thing}}.</strong>.\n{{! Just ignore this business. }}\nCheck this out:\n{{#hasThings}}\n<ul>\n{{#things}}\n<li class={{className}}>{{word}}</li>\n{{/things}}</ul>.\n{{/hasThings}}\n{{^hasThings}}\n\n<small>Nothing to check out...</small>\n{{/hasThings}}";
var templateUnparsed = "<strong>This is a slightly more complicated {{thing}}.</strong>.\n{{! Just ignore this business. }}\nCheck this out:\n{{#hasThings}}\n<ul>\n{{#things}}\n<li class={{className}}>{{word}}</li>\n{{/things}}</ul>.\n{{/hasThings}}\n{{^hasThings}}\n\n<small>Nothing to check out...</small>\n{{/hasThings}}";
var context = {
thing: function() {
return "blah";
},
things: [
{"className": "one", word: "@fat"},
{"className": "two", word: "@dhg"},
{"className": "three", word:"@sayrer"}
],
hasThings: true
};
Mustache.parse(templateParsed);
Mustache.render(templateUnparsed, context);
Mustache.render(templateParsed, context);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Mustache Unparsed | |
Mustache Parsed |
Test name | Executions per second |
---|---|
Mustache Unparsed | 272939.7 Ops/sec |
Mustache Parsed | 279923.5 Ops/sec |
Let's dive into the explanation.
Benchmark Definition
The provided JSON represents a benchmark test for comparing the performance of two different Mustache rendering approaches: templateParsed
and templateUnparsed
. The goal is to measure the time it takes to render these two templates using the Mustache library.
Template Parsed vs Unparsed
The difference between the two templates lies in how the template syntax is handled.
templateParsed
: This template has already been parsed by the Mustache library, which means that the syntax has been compiled into an intermediate representation (IR). This approach should result in faster rendering times since the parsing step has already been done.templateUnparsed
: This template still contains unparsed syntax. The Mustache library will need to parse the template on-the-fly before rendering it. This approach might be slower due to the additional overhead of parsing.Options Compared
The benchmark test compares two options:
Pros and Cons
Pros of using templateParsed
:
Cons of using templateParsed
:
Pros of using templateUnparsed
:
Cons of using templateUnparsed
:
Libraries Used
The benchmark test includes the following libraries:
Other Considerations
When building benchmarks like this, it's essential to consider factors such as:
Alternatives
If you're interested in exploring alternative templating libraries, consider the following options:
Each of these alternatives has its strengths and weaknesses, so it's essential to evaluate them based on your specific needs and requirements.