You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cocoon.apache.org by Berin Loritsch <bl...@apache.org> on 2001/02/16 19:10:55 UTC

[c2] Discovery! Why XSP is so slow!

The problem why XSP is so slow is because the SeverPagesGenerator
is Pooled, but never returned to the pool.  This causes issues
because the actual XSP Generator is also pooled.  A new pool is
created for EACH request.  Also, the XSP is reloaded for each
request.  This extra filesystem activity causes issues.  I will
attempt to make the ServerPagesGenerator ThreadSafe, which will
solve alot of issues.