Ciao, thanks.
i have a Pharo 7.0 alpha build 1262. I development a Seaside application. > May be you have a lot of still open Seaside session, which if I remember > correctly are automatically shutdown after 10 min when not active. > > Looking at Seaside session instances may give clue. OK, i clear the seaside session with the relative seaside status Clear action. But the image size keeps increasing, without an apparent reason. The consideration that I can do and that in the method code i often use Transcript show: '.....NETWORK | CASH | .....' to check the correct functioning. With the SpaceTally printSpaceAnalysis i note: as of February 16th: Class code space # in stances inst space percent inst average size Array 4115 656764 43904528 23.30 66.85 ByteString 2942 233871 27527272 14.60 117.70 as of March 4th Class code space # instances inst space percent inst average size Array 4115 837017 50564552 23.40 60.41 ByteString 2942 266620 31933216 14.80 119.77 Now i do: ByteString allInstances select:[ :i | i includesSubstring: 'NETWORK' ] where 'NETWORK' is a string used in the Transcript show: ...... NETWORK' ......' report entry. The system found 3214 ByteString instances.... ( relative to the NETWORK ) The system found 22650 ByteString instances.... ( relative to the CASH ) The system found .............. Because ????? Does the system remember something about the string create for the Transcript show: entry ? I need to reset something? How can I analyze the situation? I follow some aByteString entry with the pointersTo method but for now I have not found the solution. Thanks, Dario