mirror of https://gitee.com/bigwinds/arangodb
Activated Externals by default in OperationCursor. This is used in some places and should have a positive performance impact
This commit is contained in:
parent
62f2d55c20
commit
d4baf62d20
|
@ -110,7 +110,7 @@ struct OperationCursor {
|
|||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
std::shared_ptr<OperationResult> getMore(uint64_t batchSize = UINT64_MAX,
|
||||
bool useExternals = false);
|
||||
bool useExternals = true);
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief Get next batchSize many elements.
|
||||
|
@ -120,7 +120,7 @@ struct OperationCursor {
|
|||
//////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void getMore(std::shared_ptr<OperationResult>&, uint64_t batchSize = UINT64_MAX,
|
||||
bool useExternals = false);
|
||||
bool useExternals = true);
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
/// @brief Get next batchSize many elements. mptr variant
|
||||
|
|
Loading…
Reference in New Issue