We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5a0c4f commit 6f5a480Copy full SHA for 6f5a480
heed/src/mdb/lmdb_flags.rs
@@ -28,6 +28,8 @@ bitflags! {
28
/// Use asynchronous msync when MDB_WRITEMAP is used.
29
const MAP_ASYNC = ffi::MDB_MAPASYNC;
30
/// Tie reader locktable slots to MDB_txn objects instead of to threads.
31
+ // Note to self: When removing this flag from here, we must introduce an
32
+ // internal-only AllEnvFlags akin to the AllDatabaseFlags bitflags.
33
#[deprecated(since="0.22.0", note="please use `EnvOpenOptions::read_txn_with_tls` or `EnvOpenOptions::read_txn_without_tls` instead")]
34
const NO_TLS = ffi::MDB_NOTLS;
35
/// Don't do any locking, caller must manage their own locks.
0 commit comments