
August 26th, 2004
|
 | Latest svn User | | Join Date: April 6th, 2002 Location: Germany
Posts: 174
| |
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);
}
}
} |