replaced kelondroDyn write methods for properties and maps by faster version

this affects news, robots?, bookmarks?, blogs, the wiki, seed-db, news etc.
this all should create less IO

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@2107 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 19 years ago
parent b40f0edbe5
commit 338047e056

@ -3,7 +3,7 @@ javacSource=1.4
javacTarget=1.4
# Release Configuration
releaseVersion=0.451
releaseVersion=0.452
releaseFile=yacy_dev_v${releaseVersion}_${DSTAMP}_${releaseNr}.tar.gz
#releaseFile=yacy_v${releaseVersion}_${DSTAMP}_${releaseNr}.tar.gz
releaseDir=yacy_dev_v${releaseVersion}_${DSTAMP}_${releaseNr}

@ -194,7 +194,6 @@ abstract class kelondroAbstractRA implements kelondroRA {
}
}
/*
public void writeProperties(final Properties props, final String comment) throws IOException {
this.seek(0);
final Enumeration e = props.propertyNames();
@ -217,22 +216,6 @@ abstract class kelondroAbstractRA implements kelondroRA {
sb.append(lf);
write(new String(sb).getBytes());
}
*/
public void writeProperties(final Properties props, final String comment) throws IOException {
this.seek(0);
writeLine("# " + comment);
final Enumeration e = props.propertyNames();
String key, value;
while (e.hasMoreElements()) {
key = (String) e.nextElement();
value = props.getProperty(key, "");
write(key.getBytes());
write((byte) '=');
writeLine(value);
}
writeLine("# EOF");
}
public Properties readProperties() throws IOException {
this.seek(0);
@ -252,7 +235,6 @@ abstract class kelondroAbstractRA implements kelondroRA {
return props;
}
/*
public void writeMap(final Map map, final String comment) throws IOException {
this.seek(0);
final Iterator iter = map.entrySet().iterator();
@ -272,23 +254,8 @@ abstract class kelondroAbstractRA implements kelondroRA {
sb.append("# EOF");
sb.append(cr);
sb.append(lf);
//System.out.println("DEBUG-WRITE-MAP:" + new String(sb));
write(new String(sb).getBytes());
}
*/
public void writeMap(final Map map, final String comment) throws IOException {
this.seek(0);
writeLine("# " + comment);
final Iterator iter = map.entrySet().iterator();
Map.Entry entry;
while (iter.hasNext()) {
entry = (Map.Entry) iter.next();
write(((String) entry.getKey()).getBytes());
write((byte) '=');
writeLine((String) entry.getValue());
}
writeLine("# EOF");
}
public Map readMap() throws IOException {
this.seek(0);

Loading…
Cancel
Save