Re: cfdocument/cfsavecontent killing server memory

2007-11-14 Thread Jason Fill
I am looking at the memory in Fusion Reactor. ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from active programmers and developers.

RE: cfdocument/cfsavecontent killing server memory

2007-11-13 Thread Gaulin, Mark
Sounds like normal virtual memory usage... The JVM had to grow to the bigger size and waited until it was sure it didn't need the memory again to give it back to the OS (because taking memory from the OS and giving it are expensive operations). BTW, I'm assuming you are looking at the amount of

Re: cfdocument/cfsavecontent killing server memory

2007-11-13 Thread James Holmes
Java garbage collection is a complicated process - memory isn't necessarily cleared immediately after it is marked for GC. You can use different tuning parameters and different GC algorithms within the JVM to change the way it works, but it will help to do some reading first and test on a

Re: cfdocument/cfsavecontent killing server memory

2007-11-13 Thread James Holmes
There's a good point. If it's OS memory then this is a non-issue. On Nov 14, 2007 7:26 AM, Gaulin, Mark [EMAIL PROTECTED] wrote: BTW, I'm assuming you are looking at the amount of memory used by the process/exe, and not the amount of free memory in the JVM, which is totally different. --