mirror of
https://github.com/isar/libmdbx.git
synced 2025-02-19 12:58: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;
|
||||
/** \brief Duration of internal audit if enabled. */
|
||||
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;
|
||||
/** \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;
|
||||
/** \brief Duration of transaction ending (releasing resources). */
|
||||
uint32_t ending;
|
||||
|
Loading…
x
Reference in New Issue
Block a user