Jinja2 and Mako are both apparently pretty fast.
How do these compare to (the less featured but probably good enough for what I'm doing) string.Template ?
|
3
|
Jinja2 and Mako are both apparently pretty fast. How do these compare to (the less featured but probably good enough for what I'm doing) string.Template ?
|
||||
|
|
|
Here are the results of the popular template engines for rendering a 10x1000 HTML table.
The benchmark is based on code from Spitfire performance tests with some added template engines and added iterations to increase accuracy. The list and generator concat at the end are hand coded Python to get a feel for the upper limit of performance achievable by compiling to Python bytecode. The optimized versions use string interpolation in the inner loop. But before you run out to switch your template engine, make sure it matters. You'll need to be doing some pretty heavy caching and really optimized code before the differences between the compiling template engines starts to matter. For most applications good abstraction facilities, compatibility with design tools, familiarity and other things matter much much more. |
|||
|
|
|
You probably don't care how fast the templating system is. Among the popular ones, they all have perfectly acceptable performance characteristics. Please make decisions like this based on more important things, like ease of programming. |
||||
|
|
|
In general you will have to do profiling to answer that question, as it depends on how you use the templates and what for. string.Template is the fastest, but so primitive it can hardly be called a template in the same breath as the other templating systems, as it only does string replacements, and has no conditions or loops, making it pretty useless in practice. |
||
|
|
|
|
From the jinja2 docs, it seems that string.Template is the fastest if that's all you need.
|
||
|
|
|
|
http://teng.sourceforge.net/ - designed for 100+req/sec sites. |
||
|
|
|
|
According to the benchmarks offered on the website, Tenjin is supposedly blazingly fast compared to the competition. |
||
|
|
I think Cheetah might be the fastest, as it's implemented in C. |
||
|
|
|
|
If you can throw caching in the mix (like memcached) then choose based on features and ease of use rather than optimization. I use Mako because I like the syntax and features. Fortunately it is one of the fastest as well. |
||
|
|