Skip to content
Discussion options

You must be logged in to vote

Briefly:

  1. MDBX always provide serializability. This can't altered or undone, but you could implement in-process batching for "best effort" requests, and "nested write transactions" feature could be useful for such cases.
  2. MDBX affords wait-free for readers with read-committed isolation. This can't altered or undone, but you could implement in-process dirty reads (i.e. uncomited) for "best effort" requests.
  3. Only "D" (i.e. the durability) in "ACID" could be relaxed by using MDBX API in a regular way. Please see SYNC MODES for more information.

Replies: 5 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by erthink
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants
Converted from issue

This discussion was converted from issue #222 on May 23, 2026 13:05.