Hi list,<br><br>I have a problem with a Seaside session memory consumption. In my system there are a seaside session that should run for a long time (many days or months), this session is running a page that have JQuery code. This JQuery reload certain parts of the website by 5 seconds intervals. <br>
<br>While time is progress then the vm memory is increase and it never release this memory. In two days the memory increase of 40 MB to 530 MB. I investigate the problem and found that the callbacks are adding in this code:<br>
<br>store: aCallback <br>    | key |<br>    key := self advanceKey.<br>    callbacks <br>        at: (aCallback convertKey: key)<br>        put: aCallback.<br>    aCallback <br>        setKey: key<br>        callbacks: callbacks.<br>
    ^ key<br><br>But the old callbacks never are clear, then the GC never collect this objects. After a time the image have thousands callbacks that never will be collect.<br><br>Anyone knows what can by the solution? <br>
<br>Thanks you very much.<br>Regards<br>Andres <br><br>