Author: toad
Date: 2007-02-10 18:26:38 +0000 (Sat, 10 Feb 2007)
New Revision: 11751
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1014
- Greatly reduce memory used by loading/saving persistent inserts: Intern
strings in SimpleFieldSet unless it is short-lived and small.
- New config option lazyResume: fast startup but more memory usage (same as old
1012 behaviour; default is less memory but slower startup, as we have to wait
for inserts to be resumed)
- tell the user (rather than NPEing) if an SSK/USK looks like a 0.5 key
- minor synchronization fix
- delete a dead variable
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-02-10 18:23:21 UTC (rev
11750)
+++ trunk/freenet/src/freenet/node/Version.java 2007-02-10 18:26:38 UTC (rev
11751)
@@ -24,7 +24,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1013;
+ private static final int buildNumber = 1014;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1010;