Edgewall Software

Changes between Version 30 and Version 31 of GenshiPerformance


Ignore:
Timestamp:
Jun 28, 2007, 8:12:26 PM (17 years ago)
Author:
cmlenz
Comment:

Add Mako to bigtable benchmark

Legend:

Unmodified
Added
Removed
Modified
  • GenshiPerformance

    v30 v31  
    1212
    1313|| '''Template Engine''' || '''Rendering time (less is better)''' || '''Notes''' ||
    14 || Genshi || 3.44 ms || ||
     14|| Genshi || 3.43 ms || ||
     15|| [http://kid-templating.org/ Kid] || 6.19 ms || Kid templates are compiled to Python byte-code. The cElementTree implementation was used for this test, although using the Python implementation doesn't appear to make a significant difference. ||
     16|| [http://www.djangoproject.com/documentation/templates/ Django] || 1.38 ms || Text-based template engine that comes with the [http://www.djangoproject.com/ Django] framework. ||
    1517|| [http://www.clearsilver.net/ Clearsilver] || 0.30 ms || !ClearSilver is a text-based template engine written in C. ||
    16 || [http://www.makotemplates.org/ Mako] || 0.29 ms || Text-based template engine written in Python ||
    17 || [http://www.djangoproject.com/documentation/templates/ Django] || 1.38 ms || Text-based template engine that comes with the [http://www.djangoproject.com/ Django] framework. ||
    18 || [http://kid-templating.org/ Kid] || 6.19 ms || Kid templates are compiled to Python byte-code. The cElementTree implementation was used for this test, although using the Python implementation doesn't appear to make a significant difference. ||
     18|| [http://www.makotemplates.org/ Mako] || 0.31 ms || Text-based template engine written in Python ||
    1919|| [http://www.owlfish.com/software/simpleTAL/ SimpleTAL] || 2.84 ms || Another XML-based template engine written in Python, based on the [http://www.zope.org/ Zope] template engine (TAL). ||
    2020
     
    2929|| [http://kid-templating.org/ Kid] || 1123 ms || ||
    3030|| [http://www.djangoproject.com/documentation/templates/ Django] || 474 ms || ||
     31|| [http://www.makotemplates.org/ Mako] || 96 ms || ||
    3132|| [http://effbot.org/zone/element-index.htm ElementTree] || 293 ms || ''Not a template engine'': the benchmark simply constructs the XML tree in memory and serializes it. ||
    3233|| [http://effbot.org/zone/celementtree.htm cElementTree] || 179 ms || ''Not a template engine'': the benchmark simply constructs the XML tree in memory and serializes it. ||