Lmdb::Flags::Environment
Inherits Enum / Comparable / Value / Object
Constants
FIXED_MAP = 1_u32
##/**@defgroup mdb_env Environment Flags
- @{ */ ##/**mmap at a fixed address (experimental) */
NO_SUBDIR = 16384_u32
#/**no environment directory */
NO_SYNC = 65536_u32
#/**don't fsync after commit */
READ_ONLY = 131072_u32
#/**read only */
NO_MET_ASYNC = 262144_u32
#/**don't fsync metapage after commit */
WRITE_MAP = 524288_u32
#/**use writable mmap */
MAP_ASYNC = 1048576_u32
#/**use asynchronous msync when #MDB_WRITEMAP is used */
NO_TLS = 2097152_u32
#/**tie reader locktable slots to #MDB_txn objects instead of to threads */
NO_LOCK = 4194304_u32
#/**don't do any locking, caller must manage their own locks */
NO_READ_AHEAD = 8388608_u32
#/**don't do readahead (no effect on Windows) */
NO_MEM_INIT = 16777216_u32
#/**don't initialize malloc'd memory before writing to datafile */
None = 0_u32
All = 33505281_u32
Instance methods
none?
Source