mirror of https://gitee.com/bigwinds/arangodb
batchSize
This commit is contained in:
parent
fd6b0f0ea6
commit
7a8f2257cc
|
@ -86,7 +86,8 @@ SimpleQueryAll.prototype.execute = function () {
|
|||
JSON.stringify({
|
||||
collection: shard,
|
||||
skip: 0,
|
||||
limit: limit || undefined
|
||||
limit: limit || undefined,
|
||||
batchSize: 100000000
|
||||
}),
|
||||
{ },
|
||||
options);
|
||||
|
@ -325,7 +326,8 @@ SimpleQueryByExample.prototype.execute = function () {
|
|||
example: example,
|
||||
collection: shard,
|
||||
skip: 0,
|
||||
limit: limit || undefined
|
||||
limit: limit || undefined,
|
||||
batchSize: 100000000
|
||||
}),
|
||||
{ },
|
||||
options);
|
||||
|
|
Loading…
Reference in New Issue