1
0
Fork 0

make some collections smaller

This commit is contained in:
Jan Steemann 2014-05-09 15:22:11 +02:00
parent 80aea14a00
commit eb73bfb127
1 changed files with 10 additions and 3 deletions

View File

@ -341,7 +341,10 @@
// set up the collection _graphs
addTask("setupGraphs", "setup _graphs collection", function () {
return createSystemCollection("_graphs", { waitForSync : true });
return createSystemCollection("_graphs", {
waitForSync : true,
journalSize: 1024 * 1024
});
});
////////////////////////////////////////////////////////////////////////////////
@ -413,7 +416,9 @@
// create the _modules collection
addTask("createModules", "setup _modules collection", function () {
return createSystemCollection("_modules");
return createSystemCollection("_modules", {
journalSize: 1024 * 1024
});
});
////////////////////////////////////////////////////////////////////////////////
@ -423,7 +428,9 @@
// create the _routing collection
addTask("createRouting", "setup _routing collection", function () {
// needs to be big enough for assets
return createSystemCollection("_routing", { journalSize: 32 * 1024 * 1024 });
return createSystemCollection("_routing", {
journalSize: 32 * 1024 * 1024
});
});
////////////////////////////////////////////////////////////////////////////////