> Memory useage is excellent. I am seeing extended periods of > under 30MB of > useage. Although I had seen a strange behavior on some > previous versions. It > would load up and function and I could brouse Freenet, come > back and check my > memory useage and it would be something like 40MB. Then it > would VERY SLOWLY > continue to climb ever higher until it got near the limit > then the garbage > collector would activate and that would take it down about > 20MB and then that > process would repeat. I have not yet seen this on 5031.
Nahh.. This is how most JVM:s do it.. Don't GC until you really have to and if you have to GC too often then allocate some more memory from the host machine. And.. Since fred (as ANY other application really) uses temporary variables now and then we will 'leak' memory until the GC runs. There has been much work done to decrease the rate of this 'leakage', whereof if(logDEBUG) probably is the most notable one whilst buffer pooling is another. We will never get rid of all creations of temporary objects though. /N _______________________________________________ Devl mailing list [EMAIL PROTECTED] http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/devl
