Garbage reclaiming options. More...
#include <mdbx.h++>
Public Member Functions | |
MDBX_CXX11_CONSTEXPR | reclaiming_options () noexcept |
MDBX_CXX11_CONSTEXPR | reclaiming_options (const reclaiming_options &) noexcept=default |
MDBX_CXX14_CONSTEXPR reclaiming_options & | operator= (const reclaiming_options &) noexcept=default |
reclaiming_options (MDBX_env_flags_t) noexcept | |
Public Attributes | |
bool | lifo {false} |
bool | coalesce {false} |
Garbage reclaiming options.
|
inlinenoexcept |
|
defaultnoexcept |
|
noexcept |
|
defaultnoexcept |
Aims to coalesce a Garbage Collection items.
With MDBX_COALESCE
flag MDBX will aims to coalesce items while recycling a Garbage Collection. Technically, when possible short lists of pages will be combined into longer ones, but to fit on one database page. As a result, there will be fewer items in Garbage Collection and a page lists are longer, which slightly increases the likelihood of returning pages to Unallocated space and reducing the database file.
This flag may be changed at any time using mdbx_env_set_flags().
LIFO policy for recycling a Garbage Collection items.
MDBX_LIFORECLAIM
flag turns on LIFO policy for recycling a Garbage Collection items, instead of FIFO by default. On systems with a disk write-back cache, this can significantly increase write performance, up to several times in a best case scenario.
LIFO recycling policy means that for reuse pages will be taken which became unused the lastest (i.e. just now or most recently). Therefore the loop of database pages circulation becomes as short as possible. In other words, the number of pages, that are overwritten in memory and on disk during a series of write transactions, will be as small as possible. Thus creates ideal conditions for the efficient operation of the disk write-back cache.
MDBX_LIFORECLAIM is compatible with all no-sync flags, but gives NO noticeable impact in combination with MDBX_SAFE_NOSYNC or MDBX_UTTERLY_NOSYNC. Because MDBX will reused pages only before the last "steady" MVCC-snapshot, i.e. the loop length of database pages circulation will be mostly defined by frequency of calling mdbx_env_sync() rather than LIFO and FIFO difference.
This flag may be changed at any time using mdbx_env_set_flags().