Re: [Wicket-user] MarkupCache

2007-03-08 Thread Eelco Hillenius
This only works in 1.3/ 2.0, but let your component implement IMarkupResourceStreamProvider and IMarkupCacheKeyProvider. Then, let's getCacheKey return null and your markup will never be cached. Eelco On 3/8/07, Scott Lusebrink <[EMAIL PROTECTED]> wrote: > is there a way to tell a markup to not

Re: [Wicket-user] MarkupCache

2007-03-08 Thread Johan Compagner
override the last modified time of the IREsourceStream you make and return always the System.currentMillis() johan On 3/8/07, Scott Lusebrink <[EMAIL PROTECTED]> wrote: is there a way to tell a markup to not go into the MarkupCache. I'm overloading newMarkupResourceStream which will change

[Wicket-user] MarkupCache

2007-03-08 Thread Scott Lusebrink
is there a way to tell a markup to not go into the MarkupCache. I'm overloading newMarkupResourceStream which will change on every page but it is being put in the cache and never getting run again. There is MarkupCache.clear() but that seems to much just to remove one markupcontainer. can i use