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({
|
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);
|
||||||
|
|
Loading…
Reference in New Issue