From d4baf62d20cfa0e8573466db2c9ab8afb0dfda57 Mon Sep 17 00:00:00 2001 From: Michael Hackstein Date: Wed, 4 May 2016 17:16:10 +0200 Subject: [PATCH] Activated Externals by default in OperationCursor. This is used in some places and should have a positive performance impact --- arangod/Utils/OperationCursor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arangod/Utils/OperationCursor.h b/arangod/Utils/OperationCursor.h index 20d3a2cbdb..53f0d82be0 100644 --- a/arangod/Utils/OperationCursor.h +++ b/arangod/Utils/OperationCursor.h @@ -110,7 +110,7 @@ struct OperationCursor { ////////////////////////////////////////////////////////////////////////////// std::shared_ptr 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&, uint64_t batchSize = UINT64_MAX, - bool useExternals = false); + bool useExternals = true); ////////////////////////////////////////////////////////////////////////////// /// @brief Get next batchSize many elements. mptr variant