[]Constant nimiq_database::lmdb::open::NOTLS

pub const NOTLS: Flags

Don't use Thread-Local Storage. Tie reader locktable slots to transaction objects instead of to threads. I.e. Transaction::reset() keeps the slot reseved for the transaction object. A thread may use parallel read-only transactions. A read-only transaction may span threads if the user synchronizes its use. Applications that multiplex many user threads over individual OS threads need this option. Such an application must also serialize the write transactions in an OS thread, since LMDB's write locking is unaware of the user threads.