Edgewall Software

Changes between Version 7 and Version 8 of GenshiPerformance


Ignore:
Timestamp:
Jul 13, 2006, 11:22:55 AM (18 years ago)
Author:
cmlenz
Comment:

Add Django

Legend:

Unmodified
Added
Removed
Modified
  • GenshiPerformance

    v7 v8  
    1111|| '''Template Engine''' || '''Rendering time (less is better)''' || '''Notes''' ||
    1212|| Markup || 4.77 ms || ||
    13 || [http://kid.lesscode.org/ Kid] || 5.56 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. ||
    1413|| [http://www.clearsilver.net/ Clearsilver] || 0.33 ms || !ClearSilver is a text-based template engine written in C. ||
     14|| [http://www.djangoproject.com/documentation/templates/ Django] || 1.84 ms || Text-based template engine that comes with the [http://www.djangoproject.com/ Django] framework. ||
     15|| [http://kid.lesscode.org/ Kid] || 5.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. ||
    1516
    1617The test template is rather simple right now and doesn't make much use of the advanced features provided by either Markup or Kid, because then it would be impossible to implement an equivalent template using other template languages.