1
0
Fork 0

reduce memory usage for small collections

This commit is contained in:
Jan Steemann 2013-01-03 11:25:28 +01:00
parent c528423829
commit c23b730347
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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