I am looking at a portable heapdump file from IBM WebSpehere 6.1 and understand that MemorySessionContext contains a SessionSimpleHashMap of all the MemorySessionData objects that represent the HttpSession for each user. My question is this, why do I see MemorySessionData objects in the heap outside of that MemorySessionContext "container"?

link|improve this question

Do they have inbound references or are they roots? Perhaps they weren't completely GC'ed before the heapdump was taken. – bkail May 27 '11 at 14:31
feedback

1 Answer

up vote 0 down vote accepted

Long story short, the "loose" MSD objects had a GC roots path up to Portal objects, so I am tentatively assuming those are the Portal sessions; either that or they are in the process of being released as they are maybe de-referenced by the container and then set loose ... I didn't check all the path-to-GC-roots.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.