1
0
Fork 0

batchSize

This commit is contained in:
Jan Steemann 2014-01-30 16:09:25 +01:00
parent fd6b0f0ea6
commit 7a8f2257cc
1 changed files with 4 additions and 2 deletions

View File

@ -86,7 +86,8 @@ SimpleQueryAll.prototype.execute = function () {
JSON.stringify({ JSON.stringify({
collection: shard, collection: shard,
skip: 0, skip: 0,
limit: limit || undefined limit: limit || undefined,
batchSize: 100000000
}), }),
{ }, { },
options); options);
@ -325,7 +326,8 @@ SimpleQueryByExample.prototype.execute = function () {
example: example, example: example,
collection: shard, collection: shard,
skip: 0, skip: 0,
limit: limit || undefined limit: limit || undefined,
batchSize: 100000000
}), }),
{ }, { },
options); options);