+ buffer of 5000 instead of 10000 for the indexer

This commit is contained in:
kelson42 2012-08-08 21:57:10 +00:00
parent 6067fab7f3
commit 0305c3fff5
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ namespace kiwix {
}
/* Make a hard-disk flush every 10.000 articles */
if (indexedArticleCount % 10000 == 0) {
if (indexedArticleCount % 5000 == 0) {
self->flush();
}