Edgewall Software

Changes between Version 26 and Version 27 of GenshiPerformance


Ignore:
Timestamp:
Jan 30, 2007, 12:20:45 AM (17 years ago)
Author:
cmlenz
Comment:

Updated numbers for Kid 0.9.5

Legend:

Unmodified
Added
Removed
Modified
  • GenshiPerformance

    v26 v27  
    1515|| [http://www.clearsilver.net/ Clearsilver] || 0.33 ms || !ClearSilver is a text-based template engine written in C. ||
    1616|| [http://www.djangoproject.com/documentation/templates/ Django] || 1.84 ms || Text-based template engine that comes with the [http://www.djangoproject.com/ Django] framework. ||
    17 || [http://kid-templating.org/ Kid] || 6.66 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. ||
     17|| [http://kid-templating.org/ Kid] || 6.97 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. ||
    1818|| [http://www.owlfish.com/software/simpleTAL/ SimpleTAL] || 3.13 ms || Another XML-based template engine written in Python, based on the [http://www.zope.org/ Zope] template engine (TAL). ||
    1919
     
    2626|| '''Template Engine''' || '''Rendering time (less is better)''' || '''Notes''' ||
    2727|| Genshi || 510 ms || ||
    28 || [http://kid-templating.org/ Kid] || 1212 ms || ||
     28|| [http://kid-templating.org/ Kid] || 1235 ms || ||
    2929|| [http://www.djangoproject.com/documentation/templates/ Django] || 357 ms || ||
    3030|| [http://effbot.org/zone/element-index.htm ElementTree] || 329 ms || ''Not a template engine'': the benchmark simply constructs the XML tree in memory and serializes it. ||
     
    3939
    4040|| '''Template Engine''' || '''Rendering time (less is better)''' || '''Notes''' ||
    41 || Genshi || 3.17 ms || ||
    42 || [http://kid-templating.org/ Kid] || 7.89 ms || ||
     41|| Genshi || 3.15 ms || ||
     42|| [http://kid-templating.org/ Kid] || 7.94 ms || ||
    4343
    4444I'm not quite sure why the difference between Genshi and Kid is so much more drastic in this example compared to the above. It does define more (and slightly more sophisticated) match templates, which would suggest that Genshi implements those more efficiently. However, that's just a hypothesis.