Hi, Is it possible to cache dynamically generated content with Wicket? When using JSP I may use OSCache tags (specify conditions, timeout, etc) or create a custom tag that uses any cache implementation inside. Can this be done with Wicket?
Can panel contents be cached? Other elements? How? For example I generate table where each row contains quite complex data. I'd like to be able to cache each row if needed. Every row might contain a unique ID to make caching possible. Darek