mirror of
https://github.com/isar/libmdbx.git
synced 2025-02-22 01:48:13 +08:00
mdbx: minor clarify descriptions of the MDBX_commit_latency
fields.
This commit is contained in:
parent
937b38371f
commit
773172cc99
6
mdbx.h
6
mdbx.h
@ -3286,9 +3286,11 @@ struct MDBX_commit_latency {
|
|||||||
uint32_t gc;
|
uint32_t gc;
|
||||||
/** \brief Duration of internal audit if enabled. */
|
/** \brief Duration of internal audit if enabled. */
|
||||||
uint32_t audit;
|
uint32_t audit;
|
||||||
/** \brief Duration of writing dirty/modified data pages. */
|
/** \brief Duration of writing dirty/modified data pages to a filesystem,
|
||||||
|
* i.e. the summary duration of a `write()` syscalls during commit. */
|
||||||
uint32_t write;
|
uint32_t write;
|
||||||
/** \brief Duration of syncing written data to the dist/storage. */
|
/** \brief Duration of syncing written data to the disk/storage, i.e.
|
||||||
|
* the duration of a `fdatasync()` or a `msync()` syscall during commit. */
|
||||||
uint32_t sync;
|
uint32_t sync;
|
||||||
/** \brief Duration of transaction ending (releasing resources). */
|
/** \brief Duration of transaction ending (releasing resources). */
|
||||||
uint32_t ending;
|
uint32_t ending;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user