diff --git a/build.properties b/build.properties index 76b88a275..09ae9905c 100644 --- a/build.properties +++ b/build.properties @@ -3,7 +3,7 @@ javacSource=1.5 javacTarget=1.5 # Release Configuration -releaseVersion=0.80 +releaseVersion=0.81 stdReleaseFile=yacy_v${releaseVersion}_${DSTAMP}_${releaseNr}.tar.gz embReleaseFile=yacy_emb_v${releaseVersion}_${DSTAMP}_${releaseNr}.tar.gz proReleaseFile=yacy_pro_v${releaseVersion}_${DSTAMP}_${releaseNr}.tar.gz diff --git a/defaults/yacy.init b/defaults/yacy.init index 4ef60b139..cb6da4117 100644 --- a/defaults/yacy.init +++ b/defaults/yacy.init @@ -688,7 +688,6 @@ crawler.MaxActiveThreads = 30 # maximum size of indexing queue indexer.slots = 40 -indexer.threads = 1 # maximum size of stacker queue stacker.slots = 2000 diff --git a/source/de/anomic/plasma/plasmaSwitchboard.java b/source/de/anomic/plasma/plasmaSwitchboard.java index 0755d15b7..8c9421fdc 100644 --- a/source/de/anomic/plasma/plasmaSwitchboard.java +++ b/source/de/anomic/plasma/plasmaSwitchboard.java @@ -593,11 +593,11 @@ public final class plasmaSwitchboard extends serverAbstractSwitch( "storeDocumentIndex", "This is the sequencing step of the indexing queue: no concurrency is wanted here, because the access of the indexer works better if it is not concurrent. Files are written as streams, councurrency would destroy IO performance. In this process the words are written to the RWI cache, which flushes if it is full.", diff --git a/source/de/anomic/plasma/plasmaSwitchboardConstants.java b/source/de/anomic/plasma/plasmaSwitchboardConstants.java index 3ba044963..ff52f1f2b 100644 --- a/source/de/anomic/plasma/plasmaSwitchboardConstants.java +++ b/source/de/anomic/plasma/plasmaSwitchboardConstants.java @@ -123,7 +123,6 @@ public final class plasmaSwitchboardConstants { public static final String INDEXER_METHOD_JOBCOUNT = "queueSize"; public static final String INDEXER_METHOD_FREEMEM = "deQueueFreeMem"; public static final String INDEXER_SLOTS = "indexer.slots"; - public static final String INDEXER_THREADS = "indexer.threads"; // 90_cleanup /** *

public static final String CLEANUP = "90_cleanup"