mirror of https://gitee.com/bigwinds/arangodb
reduce memory usage for small collections
This commit is contained in:
parent
c528423829
commit
c23b730347
|
@ -1,6 +1,9 @@
|
|||
v1.1.2 (XXXX-XX-XX)
|
||||
-------------------
|
||||
|
||||
* reduce memory usage for the case when there are lots of small collections with few
|
||||
documents each
|
||||
|
||||
* backported issue #300: Extend arangoImp to Allow importing resultset-like
|
||||
(list of documents) formatted files
|
||||
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
/// @brief number of headers per block
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#define NUMBER_HEADERS_PER_BLOCK (1000000)
|
||||
#define NUMBER_HEADERS_PER_BLOCK (1000)
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
// --SECTION-- private types
|
||||
|
|
Loading…
Reference in New Issue