Re: JSP re-compile performance under heavy load

2001-05-03 Thread Glenn Nielsen
You might consider changing the design of how you cache your data. There are several JSP taglibs out that implement caching of data. You can also do a runtime include of a static file instead of a JSP. Regards, Glenn [EMAIL PROTECTED] wrote: > > Hi All, > > I'm curious if any of you have code

Re: JSP re-compile performance under heavy load

2001-05-03 Thread Paul Speed
Just a thought, But might you not also just save your query results in some intermediate format (serialization might work) that your JSP pages could then use? It may not fit in well with your system, but it would save from having to recompile pages. At the other end of the spectrum, you could