File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,27 @@ public enum EnvironmentOpenFlags
70
70
/// Calling mdb_env_sync() ensures on-disk database integrity until next commit.
71
71
/// This flag may be changed at any time using mdb_env_set_flags().
72
72
/// </summary>
73
- MapAsync = 0x100000
73
+ MapAsync = 0x100000 ,
74
+
75
+ /// <summary>
76
+ /// MDB_NOTLS. tie reader locktable slots to MDB_txn objects instead of to threads
77
+ /// </summary>
78
+ NoThreadLocalStorage = 0x200000 ,
79
+
80
+ /// <summary>
81
+ /// MDB_NOLOCK. don't do any locking, caller must manage their own locks
82
+ /// </summary>
83
+ NoLock = 0x400000 ,
84
+
85
+ /// <summary>
86
+ /// MDB_NORDAHEAD. don't do readahead (no effect on Windows)
87
+ /// </summary>
88
+ NoReadAhead = 0x800000 ,
89
+
90
+ /// <summary>
91
+ /// MDB_NOMEMINIT. don't initialize malloc'd memory before writing to datafile
92
+ /// </summary>
93
+ NoMemoryInitialization = 0x1000000
94
+
74
95
}
75
96
}
You can’t perform that action at this time.
0 commit comments