c:out

2002-03-22 Thread John Baker
Is it possible to get at request.getContextPath() like this: c:out value=${request.contextPath}/ Thanks! -- John Baker, BSc CS. Java Developer, TEAM/Slb. http://www.teamenergy.com Views expressed in this mail are my own. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: JSTL EL parser pool?

2002-03-22 Thread Shawn Bayern
On Fri, 22 Mar 2002, peter lin wrote: I've been doing benchmarks with JSTL on some dynamic pages and noticed under medium heavy load 4-64 concurrent connections, the performance degrades rapidly. I looked at ExpressionEvaluatorManager and it looks like it doesn't create a pool of parsers.

Re: JSTL EL parser pool?

2002-03-22 Thread Shawn Bayern
On Fri, 22 Mar 2002, Shawn Bayern wrote: The evaluator keeps a static cache of values, so literally the only benefit of pooling our interpreter instances would be to save the instantiation itself, which should take about ten low-level instructions on a modern JIT. (That is, the evaluator

RE: Grouped Output

2002-03-22 Thread Zvolensky, Thomas J {PDBI~Nutley}
Shawn, My principal problem is to avoid repeating the grouped column item on every detail line on the resulting web page. I only want it to appear on the first line and list details below it. Can you explain how the group by clause can help with this formatting? Thanks. -Original

Re: JSTL EL parser pool?

2002-03-22 Thread peter lin
Here are some thoughts Shawn Bayern wrote: On Fri, 22 Mar 2002, peter lin wrote: Interesting thought, Peter. Given that instantiating an Evaluator object involves no specific logic on construction, the only cost of not having a pool is that of object creation itself, which