hbf wrote: > > Has anybody implemented page caching for Wicket? If possible, I'd > like to store the markup of a page in ehcache so that subsequent requests > can be > served without invoking the rendering mechanism of the framework at all. >
You may try overriding the onRender() method in the Page class in your own page class to retrieve the cached output. However, I really don't think this is necessary as Wicket pages involves no compilation of any kind like OGNL, the render time should be quite consistent. ----- -- Kent Tong Wicket tutorials freely available at http://www.agileskills2.org/EWDW Axis2 tutorials freely available at http://www.agileskills2.org/DWSAA -- View this message in context: http://www.nabble.com/Page-markup-caching-tp15734416p15772444.html Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
