View Single Post
  #5 (permalink)  
Old August 26th, 2004
jum's Avatar
jum jum is offline
Latest svn User
 
Join Date: April 6th, 2002
Location: Germany
Posts: 174
jum is flying high
Default

Oh well, I also installed that update as it appeared on the Software Update Server. It could well be that it started with that update. Meanwhile I got a tip from Roger Kapsi to force the Java garbage collection regularly, and indeed that appears to help. I added this to my LimeWire.bsh file:

Code:
class testGC extends ManagedThread {
    testGC() {
        super("testGC");
    }
    public void managedRun() {
        try {
            Thread.sleep(10*1000);
            System.gc();
        } catch (Throwable ex) {
            error(ex);
        }
    }
}