Return-Path: Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 71166 invoked from network); 3 Aug 2003 10:42:59 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 3 Aug 2003 10:42:59 -0000 Received: (qmail 22227 invoked by uid 50); 3 Aug 2003 10:45:35 -0000 Date: 3 Aug 2003 10:45:35 -0000 Message-ID: <20030803104535.22226.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: tomcat-dev@jakarta.apache.org Cc: Subject: DO NOT REPLY [Bug 22090] New: - EL evaluation should cache parse results X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22090 EL evaluation should cache parse results Summary: EL evaluation should cache parse results Product: Tomcat 5 Version: 5.0.5 Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Jasper2 AssignedTo: tomcat-dev@jakarta.apache.org ReportedBy: matthias.ernst@coremedia.com EL expressions are parsed on every evaluation. PageContextImpl uses an ExpressionEvaluator with bypassCaches=true. Either the standard caches should be used OR rather, a compiled page should hold parsed expressions in static fields. Then contention on the caches could be avoided, too.