Re: Equivalent for PerSessionPageStore in Wicket 9

2020-04-12 Thread Thomas Heigl
Hi Sven, That's good to hear! Please let me know when you have an implementation and I'll give it another go. Best regards, Thomas On Sat, Apr 11, 2020 at 11:01 PM Sven Meier wrote: > Hi Thomas, > > actually not bad news at all (for Wicket 9 at least). > > The old page manager implementation

Re: Equivalent for PerSessionPageStore in Wicket 9

2020-04-12 Thread Sven Meier
Hi Thomas, I've did a little research on using SoftReferences for caches: https://stackoverflow.com/questions/264582/is-there-a-softhashmap-in-java http://jeremymanson.blogspot.com/2009/07/how-hotspot-decides-to-clear_07.html The experts seem to agree that depending on the GC to clean up your

Re: Equivalent for PerSessionPageStore in Wicket 9

2020-04-12 Thread Thomas Heigl
Hi Sven, I was thinking about this as well. SoftReferences worked well in my application. G1GC seems to start to evict them when -XX:InitiatingHeapOccupancyPercent is reached. In my case, when the heap is around 60% full. But as you said, there is no real control over which references are