On Tue, Mar 11, 2014 at 5:38 PM, Dale Henrichs <[hidden email]> wrote:
Yes..that was what was happening to me. I had the main component of my app (the one that is present at anytime) and if I click in any menu or something then I was kickoff. But what can I do if it is not clicking or doing something?
Exactly!!!! That was my reasoning too...but then I wonder why the continuations time out existed at all ;) Thanks,
Mariano http://marianopeck.wordpress.com _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In a Pharo image the continuations could take up a lot of object memory and that can up a load on the in-memory garbage collector ... in gemstone, since we persist session state, the in-memory garbage collector is not impacted by a "bloated" continuations cache ...
of course you end up paying the piper by having to watch your repository size and run regular MFCs ... the epoch gc can help cut down on the amount of persistent garbage created when the cache entries expire ...
Finally I think that Johan has played around with not even bothering to save the older cache entries at all ... they really only need to be saved for the back button to work and if your app is using AJAX the back button is not used ... I think...
Dale On Tue, Mar 11, 2014 at 2:04 PM, Mariano Martinez Peck <[hidden email]> wrote:
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |