Re: Structure Memory Leak

2011-05-08 Thread Matthew Lesko
I am able to consistently produce a memory leak in ColdFusion with a simple piece of test code that I've posted here with explanation: http://stackoverflow.com/questions/5898291/coldfusion-util-key-memory- leak-issue-with-structure-keys I'm cross posting here in hopes someone has

Structure Memory Leak

2011-05-05 Thread Matthew Lesko
I am able to consistently produce a memory leak in ColdFusion with a simple piece of test code that I've posted here with explanation: http://stackoverflow.com/questions/5898291/coldfusion-util-key-memory- leak-issue-with-structure-keys I'm cross posting here in hopes someone has

Re: Structure Memory Leak

2011-05-05 Thread Russ Michaels
I do recall reading something about this quite a long time ago on CF8, and I believe it was fixed. Do you have all the latest patches, updates and hotfixes installed. On Thu, May 5, 2011 at 2:43 PM, Matthew Lesko m.le...@verizon.net wrote: I am able to consistently produce a memory leak in

Re: Structure Memory Leak

2011-05-05 Thread Brian Kotek
It sounds like it could be a bug since I believe the underlying Java behind a structure is a custom implementation of the Map or ConcurrentMap interfaces. Out of curiosity, what happens if you try it using an actual Java class like HashMap or ConcurrentHashMap? On Thu, May 5, 2011 at 9:43 AM,

Re: Structure Memory Leak

2011-05-05 Thread Russ Michaels
there was a known problem with class loading with the version of java that came with CF8, if you are running cf8, you should try a newer java version. On Thu, May 5, 2011 at 3:03 PM, Brian Kotek brian...@gmail.com wrote: It sounds like it could be a bug since I believe the underlying Java