Size of session bean

2006-01-14 Thread Robert Palmer
When calculating the size of a session bean to determine memory usage, what should be included and how is this done? Do the number of methods matter? The size of the code? Just the variables? I've read much about limiting the size of the session information but not how to do it. I have some

Re: Size of session bean

2006-01-14 Thread Frank W. Zammetti
calculating the size of a session bean to determine memory usage, what should be included and how is this done? Do the number of methods matter? The size of the code? Just the variables? I've read much about limiting the size of the session information but not how to do it. I have some fairly large

RE: Size of session bean

2006-01-14 Thread Duan, Nick
, January 14, 2006 1:35 PM To: Tomcat Users List Subject: Re: Size of session bean That's an interesting question... looking at the code I wrote in Java Web Parts for the getSessionSize() method, I'm only taking into consideration the fields of the objects in session. I think this is OK because IIRC