This ZopeProduct helps you find out why a page template is slow. Add a PTProfiler Viewer object somewhere in your zodb, view your template and then look at the viewer.
- http://www.zope.org/Members/guido_w/PTProfiler
- old home
- http://plone.org/products/ptprofiler
- new home, latest version
fix --simon, Thu, 12 Jul 2007 21:34:42 +0000 reply
PTProfiler 1.2 required this change in __init__.py to give results with zope 2.8:
#if isinstance(pt, PageTemplateZ3):
if HAS_Z3TEMPLATES and isinstance(pt, PageTemplateZ3):