File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/org/lmdbjava Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public enum EnvFlags implements MaskedFlag {
57
57
*/
58
58
MDB_RDONLY_ENV (0x2_0000 ),
59
59
/**
60
- * Use a writeable memory map unless {@link #MDB_RDONLY } is set.
60
+ * Use a writeable memory map unless {@link #MDB_RDONLY_ENV } is set.
61
61
*
62
62
* <p>
63
63
* This is faster and uses fewer mallocs, but loses protection from
@@ -73,7 +73,7 @@ public enum EnvFlags implements MaskedFlag {
73
73
* <p>
74
74
* Flush system buffers to disk only once per transaction, omit the metadata
75
75
* flush. Defer that until the system flushes files to disk, or next
76
- * non-{@link #MDB_RDONLY } commit or {@link Env#sync(boolean)}. This
76
+ * non-{@link #MDB_RDONLY_ENV } commit or {@link Env#sync(boolean)}. This
77
77
* optimization* maintains database integrity, but a system crash may undo the
78
78
* last* committed transaction. I.e. it preserves the ACI (atomicity,
79
79
* consistency, isolation) but not D (durability) database property.
You can’t perform that action at this time.
0 commit comments