mirror of https://gitee.com/bigwinds/arangodb
updated CHANGELOG
This commit is contained in:
parent
2f48d03c19
commit
f079b4fe5d
11
CHANGELOG
11
CHANGELOG
|
@ -1,6 +1,17 @@
|
||||||
v3.4.1 (XXXX-XX-XX)
|
v3.4.1 (XXXX-XX-XX)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
* make AQL REMOVE operations use less memory with the RocksDB storage engine
|
||||||
|
|
||||||
|
the previous implementation of batch removals read everything to remove into
|
||||||
|
memory first before carrying out the first remove operation. The new version
|
||||||
|
will only read in about 1000 documents each time and then remove these. Queries
|
||||||
|
such as
|
||||||
|
|
||||||
|
FOR doc IN collection FILTER ... REMOVE doc IN collection
|
||||||
|
|
||||||
|
will benefit from this change in terms of memory usage.
|
||||||
|
|
||||||
* make `--help-all` now also show all hidden program options
|
* make `--help-all` now also show all hidden program options
|
||||||
|
|
||||||
Previously hidden program options were only returned when invoking arangod or
|
Previously hidden program options were only returned when invoking arangod or
|
||||||
|
|
Loading…
Reference in New Issue