Class LMDB
Getting Started
LMDB is compact, fast, powerful, and robust and implements a simplified variant of the BerkeleyDB (BDB) API.
Everything starts with an environment, created by env_create. Once created, this environment must also be opened with env_open. env_open gets
passed a name which is interpreted as a directory path. Note that this directory must exist already, it is not created for you. Within that directory,
a lock file and a storage file will be generated. If you don't want to use a directory, you can pass the NOSUBDIR option, in which case the path you
provided is used directly as the data file, and another file with a "-lock" suffix added will be used for the lock file.
Once the environment is open, a transaction can be created within it using txn_begin. Transactions may be read-write or read-only, and read-write
transactions may be nested. A transaction must only be used by one thread at a time. Transactions are always required, even for read-only access. The
transaction provides a consistent view of the data.
Once a transaction has been created, a database can be opened within it using dbi_open. If only one database will ever be used in the environment, a
NULL can be passed as the database name. For named databases, the CREATE flag must be used to create the database if it doesn't already exist. Also,
env_set_maxdbs must be called after env_create and before env_open to set the maximum number of named databases you want to support.
Note: a single transaction can open multiple databases. Generally databases should only be opened once, by the first transaction in the process. After the first transaction completes, the database handles can freely be used by all subsequent transactions.
Within a transaction, get and put can store single key/value pairs if that is all you need to do (but see Cursors below if you want to do
more).
A key/value pair is expressed as two MDBVal structures. This struct has two fields, mv_size and mv_data. The data is a void
pointer to an array of mv_size bytes.
Because LMDB is very efficient (and usually zero-copy), the data returned in an MDBVal structure may be memory-mapped straight from disk. In other
words look but do not touch (or free() for that matter). Once a transaction is closed, the values can no longer be used, so make a copy
if you need to keep them after that.
Cursors
To do more powerful things, we must use a cursor.
Within the transaction, a cursor can be created with cursor_open. With this cursor we can store/retrieve/delete (multiple) values using
cursor_get, cursor_put, and cursor_del.
cursor_get positions itself depending on the cursor operation requested, and for some operations, on the supplied key. For example, to list all
key/value pairs in a database, use operation FIRST for the first call to cursor_get, and NEXT on subsequent calls, until the end is hit.
To retrieve all keys starting from a specified key value, use SET.
When using cursor_put, either the function will position the cursor for you based on the key, or you can use operation CURRENT to use the
current position of the cursor. Note that key must then match the current position's key.
Summarizing the Opening
So we have a cursor in a transaction which opened a database in an environment which is opened from a filesystem after it was separately created.
Or, we create an environment, open it from a filesystem, create a transaction within it, open a database within that transaction, and create a cursor within all of the above.
Threads and Processes
LMDB uses POSIX locks on files, and these locks have issues if one process opens a file multiple times. Because of this, do not env_open a file
multiple times from a single process. Instead, share the LMDB environment that has opened the file across all threads. Otherwise, if a single process
opens the same environment multiple times, closing it once will remove all the locks held on it, and the other instances will be vulnerable to
corruption from other processes.
Also note that a transaction is tied to one thread by default using Thread Local Storage. If you want to pass read-only transactions across threads,
you can use the NOTLS option on the environment.
Transactions, Rollbacks, etc.
To actually get anything done, a transaction must be committed using txn_commit. Alternatively, all of a transaction's operations can be discarded
using txn_abort. In a read-only transaction, any cursors will not automatically be freed. In a read-write transaction, all cursors will be
freed and must not be used again.
For read-only transactions, obviously there is nothing to commit to storage. The transaction still must eventually be aborted to close any database handle(s) opened in it, or committed to keep the database handles around for reuse in new transactions.
In addition, as long as a transaction is open, a consistent view of the database is kept alive, which requires storage. A read-only transaction that no longer requires this consistent view should be terminated (committed or aborted) when the view is no longer needed (but see below for an optimization).
There can be multiple simultaneously active read-only transactions but only one that can write. Once a single read-write transaction is opened, all further attempts to begin one will block until the first one is committed or aborted. This has no effect on read-only transactions, however, and they may continue to be opened at any time.
Duplicate Keys
get and put respectively have no and only some support for multiple key/value pairs with identical keys. If there are multiple values for a key,
get will only return the first value.
When multiple values for one key are required, pass the DUPSORT flag to dbi_open. In an DUPSORT database, by default put will not replace the
value for a key if the key existed already. Instead it will add the new value to the key. In addition, del will pay attention to the value field
too, allowing for specific values of a key to be deleted.
Finally, additional cursor operations become available for traversing through and retrieving duplicate values.
Some Optimization
If you frequently begin and abort read-only transactions, as an optimization, it is possible to only reset and renew a transaction.
txn_reset releases any old copies of data kept around for a read-only transaction. To reuse this reset transaction, call txn_renew on it. Any
cursors in this transaction must also be renewed using cursor_renew.
Note that txn_reset is similar to txn_abort and will close any databases you opened within the transaction.
To permanently free a transaction, reset or not, use txn_abort.
Cleaning Up
For read-only transactions, any cursors created within it must be closed using cursor_close.
It is very rarely necessary to close a database handle, and in general they should just be left open.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intWrite flags.static final intWrite flags.static final intReturn codes.static final intReturn codes.static final intReturn codes.static final intReturn codes.static final intReturn codes.static final intCopy flags.static final intDatabase flags.static final intWrite flags.static final intReturn codes.static final intReturn codes.static final intDatabase flags.static final intDatabase flags.static final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intEnvironment flags.static final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intReturn codes.static final intDatabase flags.static final intDatabase flags.static final intReturn codes.static final intReturn codes.static final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intReturn codes.static final intReturn codes.static final intReturn codes.static final intEnvironment flags.static final intWrite flags.static final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intWrite flags.static final intEnvironment flags.static final intEnvironment flags.static final intEnvironment flags.static final intWrite flags.static final intEnvironment flags.static final intEnvironment flags.static final intEnvironment flags.static final intReturn codes.static final intEnvironment flags.static final intReturn codes.static final intReturn codes.static final intReturn codes.static final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intEnvironment flags.static final intReturn codes.static final intWrite flags.static final intDatabase flags.static final intDatabase flags.static final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intMDB_cursor_opstatic final intReturn codes.static final intReturn codes.static final intReturn codes.static final StringThe release date of this library version.static final intThe full library version as a single integer.static final intLibrary major version.static final intLibrary minor version.static final intReturn codes.static final intLibrary patch version.static final StringThe full library version as a string.static final intEnvironment flags. -
Method Summary
Modifier and TypeMethodDescriptionstatic intCompares two data items according to a particular database.static voidmdb_cursor_close(long cursor) Closes a cursor handle.static intmdb_cursor_count(long cursor, org.lwjgl.PointerBuffer countp) Returns count of duplicates for current key.static intmdb_cursor_dbi(long cursor) Return the cursor's database handle.static intmdb_cursor_del(long cursor, int flags) Deletes current key/data pair.static intmdb_cursor_get(long cursor, MDBVal key, MDBVal data, int op) Retrieves by cursor.static intmdb_cursor_open(long txn, int dbi, org.lwjgl.PointerBuffer cursor) Creates a cursor handle.static intmdb_cursor_put(long cursor, MDBVal key, MDBVal data, int flags) Stores by cursor.static intmdb_cursor_renew(long txn, long cursor) Renews a cursor handle.static longmdb_cursor_txn(long cursor) Returns the cursor's transaction handle.static voidmdb_dbi_close(long env, int dbi) Closes a database handle.static intmdb_dbi_flags(long txn, int dbi, int[] flags) Array version of:dbi_flagsstatic intmdb_dbi_flags(long txn, int dbi, IntBuffer flags) Retrieve the DB flags for a database handle.static intmdb_dbi_open(long txn, @Nullable CharSequence name, int flags, int[] dbi) Array version of:dbi_openstatic intmdb_dbi_open(long txn, @Nullable CharSequence name, int flags, IntBuffer dbi) Opens a database in the environment.static intmdb_dbi_open(long txn, @Nullable ByteBuffer name, int flags, int[] dbi) Array version of:dbi_openstatic intmdb_dbi_open(long txn, @Nullable ByteBuffer name, int flags, IntBuffer dbi) Opens a database in the environment.static intCompares two data items according to a particular database.static intDeletes items from a database.static intmdb_drop(long txn, int dbi, boolean del) Empties or deletes+closes a database.static voidmdb_env_close(long env) Closes the environment and releases the memory map.static intmdb_env_copy(long env, CharSequence path) Copies an LMDB environment to the specified path.static intmdb_env_copy(long env, ByteBuffer path) Copies an LMDB environment to the specified path.static intmdb_env_copy2(long env, CharSequence path, int flags) Copies an LMDB environment to the specified path, with options.static intmdb_env_copy2(long env, ByteBuffer path, int flags) Copies an LMDB environment to the specified path, with options.static intmdb_env_create(org.lwjgl.PointerBuffer env) Creates an LMDB environment handle.static intmdb_env_get_flags(long env, int[] flags) Array version of:env_get_flagsstatic intmdb_env_get_flags(long env, IntBuffer flags) Gets environment flags.static intmdb_env_get_maxkeysize(long env) Gets the maximum size of keys andDUPSORTdata we can write.static intmdb_env_get_maxreaders(long env, int[] readers) Array version of:env_get_maxreadersstatic intmdb_env_get_maxreaders(long env, IntBuffer readers) Gets the maximum number of threads/reader slots for the environment.static intmdb_env_get_path(long env, org.lwjgl.PointerBuffer path) Returns the path that was used inenv_open.static longmdb_env_get_userctx(long env) Gets the application information associated with theMDB_env.static intmdb_env_info(long env, MDBEnvInfo stat) Returns information about the LMDB environment.static intmdb_env_open(long env, CharSequence path, int flags, int mode) Opens an environment handle.static intmdb_env_open(long env, ByteBuffer path, int flags, int mode) Opens an environment handle.static intmdb_env_set_flags(long env, int flags, boolean onoff) Sets environment flags.static intmdb_env_set_mapsize(long env, long size) Sets the size of the memory map to use for this environment.static intmdb_env_set_maxdbs(long env, int dbs) Sets the maximum number of named databases for the environment.static intmdb_env_set_maxreaders(long env, int readers) Sets the maximum number of threads/reader slots for the environment.static intmdb_env_set_userctx(long env, long ctx) Set application information associated with theMDB_env.static intmdb_env_stat(long env, MDBStat stat) Returns statistics about the LMDB environment.static intmdb_env_sync(long env, boolean force) Flushes the data buffers to disk.static intGets items from a database.static intStores items into a database.static intmdb_reader_check(long env, int[] dead) Array version of:reader_checkstatic intmdb_reader_check(long env, IntBuffer dead) Checks for stale entries in the reader lock table.static intmdb_reader_list(long env, MDBMsgFuncI func, long ctx) Dumps the entries in the reader lock table.static intmdb_set_compare(long txn, int dbi, MDBCmpFuncI cmp) Sets a custom key comparison function for a database.static intmdb_set_dupsort(long txn, int dbi, MDBCmpFuncI cmp) Sets a custom data comparison function for aDUPSORTdatabase.static intmdb_set_relctx(long txn, int dbi, long ctx) Sets a context pointer for aFIXEDMAPdatabase's relocation function.static intmdb_set_relfunc(long txn, int dbi, MDBRelFuncI rel) Sets a relocation function for aFIXEDMAPdatabase.static intRetrieves statistics for a database.static Stringmdb_strerror(int err) Returns a string describing a given error code.static voidmdb_txn_abort(long txn) Abandons all the operations of the transaction instead of saving them.static intmdb_txn_begin(long env, long parent, int flags, org.lwjgl.PointerBuffer txn) Creates a transaction for use with the environment.static intmdb_txn_commit(long txn) Commits all the operations of a transaction into the database.static longmdb_txn_env(long txn) Returns the transaction'sMDB_env.static longmdb_txn_id(long txn) Returns the transaction's ID.static intmdb_txn_renew(long txn) Renews a read-only transaction.static voidmdb_txn_reset(long txn) Resets a read-only transaction.static @Nullable Stringmdb_version(int @Nullable [] major, int @Nullable [] minor, int @Nullable [] patch) Array version of:versionstatic @Nullable Stringmdb_version(@Nullable IntBuffer major, @Nullable IntBuffer minor, @Nullable IntBuffer patch) Returns the LMDB library version information.static intnmdb_cmp(long txn, int dbi, long a, long b) Unsafe version of:cmpstatic voidnmdb_cursor_close(long cursor) Unsafe version of:cursor_closestatic intnmdb_cursor_count(long cursor, long countp) Unsafe version of:cursor_countstatic intnmdb_cursor_dbi(long cursor) Unsafe version of:cursor_dbistatic intnmdb_cursor_del(long cursor, int flags) Unsafe version of:cursor_delstatic intnmdb_cursor_get(long cursor, long key, long data, int op) Unsafe version of:cursor_getstatic intnmdb_cursor_open(long txn, int dbi, long cursor) Unsafe version of:cursor_openstatic intnmdb_cursor_put(long cursor, long key, long data, int flags) Unsafe version of:cursor_putstatic intnmdb_cursor_renew(long txn, long cursor) Unsafe version of:cursor_renewstatic longnmdb_cursor_txn(long cursor) Unsafe version of:cursor_txnstatic voidnmdb_dbi_close(long env, int dbi) Unsafe version of:dbi_closestatic intnmdb_dbi_flags(long txn, int dbi, int[] flags) Array version of:nmdb_dbi_flags(long, int, long)static intnmdb_dbi_flags(long txn, int dbi, long flags) Unsafe version of:dbi_flagsstatic intnmdb_dbi_open(long txn, long name, int flags, int[] dbi) Array version of:nmdb_dbi_open(long, long, int, long)static intnmdb_dbi_open(long txn, long name, int flags, long dbi) Unsafe version of:dbi_openstatic intnmdb_dcmp(long txn, int dbi, long a, long b) Unsafe version of:dcmpstatic intnmdb_del(long txn, int dbi, long key, long data) Unsafe version of:delstatic intnmdb_drop(long txn, int dbi, int del) Unsafe version of:dropstatic voidnmdb_env_close(long env) Unsafe version of:env_closestatic intnmdb_env_copy(long env, long path) Unsafe version of:env_copystatic intnmdb_env_copy2(long env, long path, int flags) Unsafe version of:env_copy2static intnmdb_env_create(long env) Unsafe version of:env_createstatic intnmdb_env_get_flags(long env, int[] flags) Array version of:nmdb_env_get_flags(long, long)static intnmdb_env_get_flags(long env, long flags) Unsafe version of:env_get_flagsstatic intnmdb_env_get_maxkeysize(long env) Unsafe version of:env_get_maxkeysizestatic intnmdb_env_get_maxreaders(long env, int[] readers) Array version of:nmdb_env_get_maxreaders(long, long)static intnmdb_env_get_maxreaders(long env, long readers) Unsafe version of:env_get_maxreadersstatic intnmdb_env_get_path(long env, long path) Unsafe version of:env_get_pathstatic longnmdb_env_get_userctx(long env) Unsafe version of:env_get_userctxstatic intnmdb_env_info(long env, long stat) Unsafe version of:env_infostatic intnmdb_env_open(long env, long path, int flags, int mode) Unsafe version of:env_openstatic intnmdb_env_set_flags(long env, int flags, int onoff) Unsafe version of:env_set_flagsstatic intnmdb_env_set_mapsize(long env, long size) Unsafe version of:env_set_mapsizestatic intnmdb_env_set_maxdbs(long env, int dbs) Unsafe version of:env_set_maxdbsstatic intnmdb_env_set_maxreaders(long env, int readers) Unsafe version of:env_set_maxreadersstatic intnmdb_env_set_userctx(long env, long ctx) Unsafe version of:env_set_userctxstatic intnmdb_env_stat(long env, long stat) Unsafe version of:env_statstatic intnmdb_env_sync(long env, int force) Unsafe version of:env_syncstatic intnmdb_get(long txn, int dbi, long key, long data) Unsafe version of:getstatic intnmdb_put(long txn, int dbi, long key, long data, int flags) Unsafe version of:putstatic intnmdb_reader_check(long env, int[] dead) Array version of:nmdb_reader_check(long, long)static intnmdb_reader_check(long env, long dead) Unsafe version of:reader_checkstatic intnmdb_reader_list(long env, long func, long ctx) Unsafe version of:reader_liststatic intnmdb_set_compare(long txn, int dbi, long cmp) Unsafe version of:set_comparestatic intnmdb_set_dupsort(long txn, int dbi, long cmp) Unsafe version of:set_dupsortstatic intnmdb_set_relctx(long txn, int dbi, long ctx) Unsafe version of:set_relctxstatic intnmdb_set_relfunc(long txn, int dbi, long rel) Unsafe version of:set_relfuncstatic intnmdb_stat(long txn, int dbi, long stat) Unsafe version of:statstatic longnmdb_strerror(int err) Unsafe version of:strerrorstatic voidnmdb_txn_abort(long txn) Unsafe version of:txn_abortstatic intnmdb_txn_begin(long env, long parent, int flags, long txn) Unsafe version of:txn_beginstatic intnmdb_txn_commit(long txn) Unsafe version of:txn_commitstatic longnmdb_txn_env(long txn) Unsafe version of:txn_envstatic longnmdb_txn_id(long txn) Unsafe version of:txn_idstatic intnmdb_txn_renew(long txn) Unsafe version of:txn_renewstatic voidnmdb_txn_reset(long txn) Unsafe version of:txn_resetstatic longnmdb_version(int[] major, int[] minor, int[] patch) Array version of:nmdb_version(long, long, long)static longnmdb_version(long major, long minor, long patch) Unsafe version of:version
-
Field Details
-
MDB_VERSION_MAJOR
public static final int MDB_VERSION_MAJORLibrary major version.- See Also:
-
MDB_VERSION_MINOR
public static final int MDB_VERSION_MINORLibrary minor version.- See Also:
-
MDB_VERSION_PATCH
public static final int MDB_VERSION_PATCHLibrary patch version.- See Also:
-
MDB_VERSION_FULL
public static final int MDB_VERSION_FULLThe full library version as a single integer.- See Also:
-
MDB_VERSION_DATE
The release date of this library version.- See Also:
-
MDB_VERSION_STRING
The full library version as a string. -
MDB_FIXEDMAP
public static final int MDB_FIXEDMAPEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_NOSUBDIR
public static final int MDB_NOSUBDIREnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_NOSYNC
public static final int MDB_NOSYNCEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_RDONLY
public static final int MDB_RDONLYEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_NOMETASYNC
public static final int MDB_NOMETASYNCEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_WRITEMAP
public static final int MDB_WRITEMAPEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_MAPASYNC
public static final int MDB_MAPASYNCEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_NOTLS
public static final int MDB_NOTLSEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_NOLOCK
public static final int MDB_NOLOCKEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_NORDAHEAD
public static final int MDB_NORDAHEADEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_NOMEMINIT
public static final int MDB_NOMEMINITEnvironment flags.Enum values:
FIXEDMAP- mmap at a fixed address (experimental).NOSUBDIR- No environment directory.NOSYNC- Don't fsync after commit.RDONLY- Read only.NOMETASYNC- Don't fsync metapage after commit.WRITEMAP- Use writable mmap.MAPASYNC- Use asynchronous msync whenWRITEMAPis used.NOTLS- Tie reader locktable slots toMDB_txnobjects instead of to threads.NOLOCK- Don't do any locking, caller must manage their own locks.NORDAHEAD- Don't do readahead (no effect on Windows).NOMEMINIT- Don't initialize malloc'd memory before writing to datafile.
- See Also:
-
MDB_REVERSEKEY
public static final int MDB_REVERSEKEYDatabase flags.Enum values:
REVERSEKEY- Use reverse string keys.DUPSORT- Use sorted duplicates.INTEGERKEY- Numeric keys in native byte order: eitherunsigned intorsize_t. The keys must all be of the same size.DUPFIXED- WithDUPSORT, sorted dup items have fixed size.INTEGERDUP- WithDUPSORT, dups areINTEGERKEY-style integers.REVERSEDUP- WithDUPSORT, use reverse string dups.CREATE- Create DB if not already existing.
- See Also:
-
MDB_DUPSORT
public static final int MDB_DUPSORTDatabase flags.Enum values:
REVERSEKEY- Use reverse string keys.DUPSORT- Use sorted duplicates.INTEGERKEY- Numeric keys in native byte order: eitherunsigned intorsize_t. The keys must all be of the same size.DUPFIXED- WithDUPSORT, sorted dup items have fixed size.INTEGERDUP- WithDUPSORT, dups areINTEGERKEY-style integers.REVERSEDUP- WithDUPSORT, use reverse string dups.CREATE- Create DB if not already existing.
- See Also:
-
MDB_INTEGERKEY
public static final int MDB_INTEGERKEYDatabase flags.Enum values:
REVERSEKEY- Use reverse string keys.DUPSORT- Use sorted duplicates.INTEGERKEY- Numeric keys in native byte order: eitherunsigned intorsize_t. The keys must all be of the same size.DUPFIXED- WithDUPSORT, sorted dup items have fixed size.INTEGERDUP- WithDUPSORT, dups areINTEGERKEY-style integers.REVERSEDUP- WithDUPSORT, use reverse string dups.CREATE- Create DB if not already existing.
- See Also:
-
MDB_DUPFIXED
public static final int MDB_DUPFIXEDDatabase flags.Enum values:
REVERSEKEY- Use reverse string keys.DUPSORT- Use sorted duplicates.INTEGERKEY- Numeric keys in native byte order: eitherunsigned intorsize_t. The keys must all be of the same size.DUPFIXED- WithDUPSORT, sorted dup items have fixed size.INTEGERDUP- WithDUPSORT, dups areINTEGERKEY-style integers.REVERSEDUP- WithDUPSORT, use reverse string dups.CREATE- Create DB if not already existing.
- See Also:
-
MDB_INTEGERDUP
public static final int MDB_INTEGERDUPDatabase flags.Enum values:
REVERSEKEY- Use reverse string keys.DUPSORT- Use sorted duplicates.INTEGERKEY- Numeric keys in native byte order: eitherunsigned intorsize_t. The keys must all be of the same size.DUPFIXED- WithDUPSORT, sorted dup items have fixed size.INTEGERDUP- WithDUPSORT, dups areINTEGERKEY-style integers.REVERSEDUP- WithDUPSORT, use reverse string dups.CREATE- Create DB if not already existing.
- See Also:
-
MDB_REVERSEDUP
public static final int MDB_REVERSEDUPDatabase flags.Enum values:
REVERSEKEY- Use reverse string keys.DUPSORT- Use sorted duplicates.INTEGERKEY- Numeric keys in native byte order: eitherunsigned intorsize_t. The keys must all be of the same size.DUPFIXED- WithDUPSORT, sorted dup items have fixed size.INTEGERDUP- WithDUPSORT, dups areINTEGERKEY-style integers.REVERSEDUP- WithDUPSORT, use reverse string dups.CREATE- Create DB if not already existing.
- See Also:
-
MDB_CREATE
public static final int MDB_CREATEDatabase flags.Enum values:
REVERSEKEY- Use reverse string keys.DUPSORT- Use sorted duplicates.INTEGERKEY- Numeric keys in native byte order: eitherunsigned intorsize_t. The keys must all be of the same size.DUPFIXED- WithDUPSORT, sorted dup items have fixed size.INTEGERDUP- WithDUPSORT, dups areINTEGERKEY-style integers.REVERSEDUP- WithDUPSORT, use reverse string dups.CREATE- Create DB if not already existing.
- See Also:
-
MDB_NOOVERWRITE
public static final int MDB_NOOVERWRITEWrite flags.Enum values:
NOOVERWRITE- Don't write if the key already exists.NODUPDATA- Remove all duplicate data items.CURRENT- Overwrite the current key/data pair.RESERVE- Just reserve space for data, don't copy it. Return a pointer to the reserved space.APPEND- Data is being appended, don't split full pages.APPENDDUP- Duplicate data is being appended, don't split full pages.MULTIPLE- Store multiple data items in one call. Only forDUPFIXED.
- See Also:
-
MDB_NODUPDATA
public static final int MDB_NODUPDATAWrite flags.Enum values:
NOOVERWRITE- Don't write if the key already exists.NODUPDATA- Remove all duplicate data items.CURRENT- Overwrite the current key/data pair.RESERVE- Just reserve space for data, don't copy it. Return a pointer to the reserved space.APPEND- Data is being appended, don't split full pages.APPENDDUP- Duplicate data is being appended, don't split full pages.MULTIPLE- Store multiple data items in one call. Only forDUPFIXED.
- See Also:
-
MDB_CURRENT
public static final int MDB_CURRENTWrite flags.Enum values:
NOOVERWRITE- Don't write if the key already exists.NODUPDATA- Remove all duplicate data items.CURRENT- Overwrite the current key/data pair.RESERVE- Just reserve space for data, don't copy it. Return a pointer to the reserved space.APPEND- Data is being appended, don't split full pages.APPENDDUP- Duplicate data is being appended, don't split full pages.MULTIPLE- Store multiple data items in one call. Only forDUPFIXED.
- See Also:
-
MDB_RESERVE
public static final int MDB_RESERVEWrite flags.Enum values:
NOOVERWRITE- Don't write if the key already exists.NODUPDATA- Remove all duplicate data items.CURRENT- Overwrite the current key/data pair.RESERVE- Just reserve space for data, don't copy it. Return a pointer to the reserved space.APPEND- Data is being appended, don't split full pages.APPENDDUP- Duplicate data is being appended, don't split full pages.MULTIPLE- Store multiple data items in one call. Only forDUPFIXED.
- See Also:
-
MDB_APPEND
public static final int MDB_APPENDWrite flags.Enum values:
NOOVERWRITE- Don't write if the key already exists.NODUPDATA- Remove all duplicate data items.CURRENT- Overwrite the current key/data pair.RESERVE- Just reserve space for data, don't copy it. Return a pointer to the reserved space.APPEND- Data is being appended, don't split full pages.APPENDDUP- Duplicate data is being appended, don't split full pages.MULTIPLE- Store multiple data items in one call. Only forDUPFIXED.
- See Also:
-
MDB_APPENDDUP
public static final int MDB_APPENDDUPWrite flags.Enum values:
NOOVERWRITE- Don't write if the key already exists.NODUPDATA- Remove all duplicate data items.CURRENT- Overwrite the current key/data pair.RESERVE- Just reserve space for data, don't copy it. Return a pointer to the reserved space.APPEND- Data is being appended, don't split full pages.APPENDDUP- Duplicate data is being appended, don't split full pages.MULTIPLE- Store multiple data items in one call. Only forDUPFIXED.
- See Also:
-
MDB_MULTIPLE
public static final int MDB_MULTIPLEWrite flags.Enum values:
NOOVERWRITE- Don't write if the key already exists.NODUPDATA- Remove all duplicate data items.CURRENT- Overwrite the current key/data pair.RESERVE- Just reserve space for data, don't copy it. Return a pointer to the reserved space.APPEND- Data is being appended, don't split full pages.APPENDDUP- Duplicate data is being appended, don't split full pages.MULTIPLE- Store multiple data items in one call. Only forDUPFIXED.
- See Also:
-
MDB_CP_COMPACT
public static final int MDB_CP_COMPACTCopy flags.Enum values:
CP_COMPACT- Omit free space from copy, and renumber all pages sequentially.
- See Also:
-
MDB_FIRST
public static final int MDB_FIRSTMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_FIRST_DUP
public static final int MDB_FIRST_DUPMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_GET_BOTH
public static final int MDB_GET_BOTHMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_GET_BOTH_RANGE
public static final int MDB_GET_BOTH_RANGEMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_GET_CURRENT
public static final int MDB_GET_CURRENTMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_GET_MULTIPLE
public static final int MDB_GET_MULTIPLEMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_LAST
public static final int MDB_LASTMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_LAST_DUP
public static final int MDB_LAST_DUPMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_NEXT
public static final int MDB_NEXTMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_NEXT_DUP
public static final int MDB_NEXT_DUPMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_NEXT_MULTIPLE
public static final int MDB_NEXT_MULTIPLEMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_NEXT_NODUP
public static final int MDB_NEXT_NODUPMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_PREV
public static final int MDB_PREVMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_PREV_DUP
public static final int MDB_PREV_DUPMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_PREV_NODUP
public static final int MDB_PREV_NODUPMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_SET
public static final int MDB_SETMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_SET_KEY
public static final int MDB_SET_KEYMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_SET_RANGE
public static final int MDB_SET_RANGEMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_PREV_MULTIPLE
public static final int MDB_PREV_MULTIPLEMDB_cursor_opEnum values:
FIRST- Position at first key/data item.FIRST_DUP- Position at first data item of current key. Only forDUPSORT.GET_BOTH- Position at key/data pair. Only forDUPSORT.GET_BOTH_RANGE- position at key, nearest data. Only forDUPSORT.GET_CURRENT- Return key/data at current cursor position.GET_MULTIPLE- Return up to a page of duplicate data items from current cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.LAST- Position at last key/data item.LAST_DUP- Position at last data item of current key. Only forDUPSORT.NEXT- Position at next data item.NEXT_DUP- Position at next data item of current key. Only forDUPSORT.NEXT_MULTIPLE- Return up to a page of duplicate data items from next cursor position. Move cursor to prepare forNEXT_MULTIPLE. Only forDUPFIXED.NEXT_NODUP- Position at first data item of next key.PREV- Position at previous data item.PREV_DUP- Position at previous data item of current key. Only forDUPSORT.PREV_NODUP- Position at last data item of previous key.SET- Position at specified key.SET_KEY- Position at specified key, return key + data.SET_RANGE- Position at first key greater than or equal to specified key.PREV_MULTIPLE- Position at previous page and return up to a page of duplicate data items. Only forDUPFIXED.
- See Also:
-
MDB_SUCCESS
public static final int MDB_SUCCESSReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_KEYEXIST
public static final int MDB_KEYEXISTReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_NOTFOUND
public static final int MDB_NOTFOUNDReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_PAGE_NOTFOUND
public static final int MDB_PAGE_NOTFOUNDReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_CORRUPTED
public static final int MDB_CORRUPTEDReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_PANIC
public static final int MDB_PANICReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_VERSION_MISMATCH
public static final int MDB_VERSION_MISMATCHReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_INVALID
public static final int MDB_INVALIDReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_MAP_FULL
public static final int MDB_MAP_FULLReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_DBS_FULL
public static final int MDB_DBS_FULLReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_READERS_FULL
public static final int MDB_READERS_FULLReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_TLS_FULL
public static final int MDB_TLS_FULLReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_TXN_FULL
public static final int MDB_TXN_FULLReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_CURSOR_FULL
public static final int MDB_CURSOR_FULLReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_PAGE_FULL
public static final int MDB_PAGE_FULLReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_MAP_RESIZED
public static final int MDB_MAP_RESIZEDReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_INCOMPATIBLE
public static final int MDB_INCOMPATIBLEReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_BAD_RSLOT
public static final int MDB_BAD_RSLOTReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_BAD_TXN
public static final int MDB_BAD_TXNReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_BAD_VALSIZE
public static final int MDB_BAD_VALSIZEReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_BAD_DBI
public static final int MDB_BAD_DBIReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
MDB_LAST_ERRCODE
public static final int MDB_LAST_ERRCODEReturn codes.Enum values:
SUCCESS- Successful result.KEYEXIST- Key/data pair already exists.NOTFOUND- Key/data pair not found (EOF).PAGE_NOTFOUND- Requested page not found - this usually indicates corruption.CORRUPTED- Located page was wrong type.PANIC- Update of meta page failed or environment had fatal error.VERSION_MISMATCH- Environment version mismatch.INVALID- File is not a valid LMDB file.MAP_FULL- Environment mapsize reached.DBS_FULL- Environment maxdbs reached.READERS_FULL- Environment maxreaders reached.TLS_FULL- Too many TLS keys in use - Windows only.TXN_FULL- Txn has too many dirty pages.CURSOR_FULL- Cursor stack too deep - internal error.PAGE_FULL- Page has not enough space - internal error.MAP_RESIZED- Database contents grew beyond environment mapsize.INCOMPATIBLE- The operation expects anDUPSORT/DUPFIXEDdatabase. Opening a named DB when the unnamed DB hasDUPSORT/INTEGERKEY. Accessing a data record as a database, or vice versa. The database was dropped and recreated with different flags.BAD_RSLOT- Invalid reuse of reader locktable slot.BAD_TXN- Transaction must abort, has a child, or is invalid.BAD_VALSIZE- Unsupported size of key/DB name/data, or wrongDUPFIXEDsize.BAD_DBI- The specified DBI was changed unexpectedly.LAST_ERRCODE- The last defined error code.
- See Also:
-
-
Method Details
-
nmdb_version
public static long nmdb_version(long major, long minor, long patch) Unsafe version of:version -
mdb_version
public static @Nullable String mdb_version(@Nullable IntBuffer major, @Nullable IntBuffer minor, @Nullable IntBuffer patch) Returns the LMDB library version information.- Parameters:
major- if non-NULL, the library major version number is copied hereminor- if non-NULL, the library minor version number is copied herepatch- if non-NULL, the library patch version number is copied here- Returns:
- the library version as a string
-
nmdb_strerror
public static long nmdb_strerror(int err) Unsafe version of:strerror -
mdb_strerror
Returns a string describing a given error code.This function is a superset of the ANSI C X3.159-1989 (ANSI C) strerror(3) function. If the error code is greater than or equal to 0, then the string returned by the system function strerror(3) is returned. If the error code is less than 0, an error string corresponding to the LMDB library error is returned.
- Parameters:
err- the error code- Returns:
- the description of the error
-
nmdb_env_create
public static int nmdb_env_create(long env) Unsafe version of:env_create -
mdb_env_create
public static int mdb_env_create(org.lwjgl.PointerBuffer env) Creates an LMDB environment handle.This function allocates memory for a
MDB_envstructure. To release the allocated memory and discard the handle, callenv_close. Before the handle may be used, it must be opened usingenv_open. Various other options may also need to be set before opening the handle, e.g.env_set_mapsize,env_set_maxreaders,env_set_maxdbs, depending on usage requirements.- Parameters:
env- the address where the new handle will be stored- Returns:
- a non-zero error value on failure and 0 on success
-
nmdb_env_open
public static int nmdb_env_open(long env, long path, int flags, int mode) Unsafe version of:env_open -
mdb_env_open
Opens an environment handle.If this function fails,
env_closemust be called to discard theMDB_envhandle.- Parameters:
env- an environment handle returned byenv_createpath- the directory in which the database files reside. This directory must already exist and be writable.flags- Special options for this environment. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here. Flags set byenv_set_flagsare also used.FIXEDMAPUse a fixed address for the mmap region. This flag must be specified when creating the environment, and is stored persistently in the environment. If successful, the memory map will always reside at the same virtual address and pointers used to reference data items in the database will be constant across multiple invocations. This option may not always work, depending on how the operating system has allocated memory to shared libraries and other uses.
The feature is highly experimental.
NOSUBDIRBy default, LMDB creates its environment in a directory whose pathname is given in
path, and creates its data and lock files under that directory. With this option,pathis used as-is for the database main data file. The database lock file is thepathwith "-lock" appended.RDONLYOpen the environment in read-only mode. No write operations will be allowed. LMDB will still modify the lock file - except on read-only filesystems, where LMDB does not use locks.
WRITEMAPUse a writeable memory map unless
RDONLYis set. This uses fewer mallocs but loses protection from application bugs like wild pointer writes and other bad updates into the database. This may be slightly faster for DBs that fit entirely in RAM, but is slower for DBs larger than RAM.Incompatible with nested transactions.
Do not mix processes with and without
WRITEMAPon the same environment. This can defeat durability (env_syncetc).NOMETASYNCFlush system buffers to disk only once per transaction, omit the metadata flush. Defer that until the system flushes files to disk, or next non-
RDONLYcommit orenv_sync. This optimization maintains database integrity, but a system crash may undo the last committed transaction. I.e. it preserves the ACI (atomicity, consistency, isolation) but not D (durability) database property.This flag may be changed at any time using
env_set_flags.NOSYNCDon't flush system buffers to disk when committing a transaction. This optimization means a system crash can corrupt the database or lose the last transactions if buffers are not yet flushed to disk. The risk is governed by how often the system flushes dirty buffers to disk and how often
env_syncis called. However, if the filesystem preserves write order and theWRITEMAPflag is not used, transactions exhibit ACI (atomicity, consistency, isolation) properties and only lose D (durability). I.e. database integrity is maintained, but a system crash may undo the final transactions. Note that (NOSYNC|WRITEMAP) leaves the system with no hint for when to write transactions to disk, unlessenv_syncis called. (MAPASYNC|WRITEMAP) may be preferable.This flag may be changed at any time using
env_set_flags.MAPASYNCWhen using
WRITEMAP, use asynchronous flushes to disk. As withNOSYNC, a system crash can then corrupt the database or lose the last transactions. Callingenv_syncensures on-disk database integrity until next commit.This flag may be changed at any time using
env_set_flags.NOTLSDon't use Thread-Local Storage. Tie reader locktable slots to
MDB_txnobjects instead of to threads. I.e.txn_resetkeeps the slot reseved for theMDB_txnobject. 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.NOLOCKDon't do any locking. If concurrent access is anticipated, the caller must manage all concurrency itself. For proper operation the caller must enforce single-writer semantics, and must ensure that no readers are using old transactions while a writer is active. The simplest approach is to use an exclusive lock so that no readers may be active at all when a writer begins.
NORDAHEADTurn off readahead. Most operating systems perform readahead on read requests by default. This option turns it off if the OS supports it. Turning it off may help random read performance when the DB is larger than RAM and system RAM is full.
The option is not implemented on Windows.
NOMEMINITDon't initialize malloc'd memory before writing to unused spaces in the data file. By default, memory for pages written to the data file is obtained using malloc. While these pages may be reused in subsequent transactions, freshly malloc'd pages will be initialized to zeroes before use. This avoids persisting leftover data from other code (that used the heap and subsequently freed the memory) into the data file. Note that many other system libraries may allocate and free memory from the heap for arbitrary uses. E.g., stdio may use the heap for file I/O buffers. This initialization step has a modest performance cost so some applications may want to disable it using this flag. This option can be a problem for applications which handle sensitive data like passwords, and it makes memory checkers like Valgrind noisy. This flag is not needed with
WRITEMAP, which writes directly to the mmap instead of using malloc for pages. The initialization is also skipped ifRESERVEis used; the caller is expected to overwrite all of the memory that was reserved in that case.This flag may be changed at any time using
env_set_flags.
mode- The UNIX permissions to set on created files and semaphores.This parameter is ignored on Windows.
- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
VERSION_MISMATCH- the version of the LMDB library doesn't match the version that created the database environment.INVALID- the environment file headers are corrupted.ENOENT- the directory specified by the path parameter doesn't exist.EACCES- the user didn't have permission to access the environment files.EAGAIN- the environment was locked by another process.
-
mdb_env_open
Opens an environment handle.If this function fails,
env_closemust be called to discard theMDB_envhandle.- Parameters:
env- an environment handle returned byenv_createpath- the directory in which the database files reside. This directory must already exist and be writable.flags- Special options for this environment. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here. Flags set byenv_set_flagsare also used.FIXEDMAPUse a fixed address for the mmap region. This flag must be specified when creating the environment, and is stored persistently in the environment. If successful, the memory map will always reside at the same virtual address and pointers used to reference data items in the database will be constant across multiple invocations. This option may not always work, depending on how the operating system has allocated memory to shared libraries and other uses.
The feature is highly experimental.
NOSUBDIRBy default, LMDB creates its environment in a directory whose pathname is given in
path, and creates its data and lock files under that directory. With this option,pathis used as-is for the database main data file. The database lock file is thepathwith "-lock" appended.RDONLYOpen the environment in read-only mode. No write operations will be allowed. LMDB will still modify the lock file - except on read-only filesystems, where LMDB does not use locks.
WRITEMAPUse a writeable memory map unless
RDONLYis set. This uses fewer mallocs but loses protection from application bugs like wild pointer writes and other bad updates into the database. This may be slightly faster for DBs that fit entirely in RAM, but is slower for DBs larger than RAM.Incompatible with nested transactions.
Do not mix processes with and without
WRITEMAPon the same environment. This can defeat durability (env_syncetc).NOMETASYNCFlush system buffers to disk only once per transaction, omit the metadata flush. Defer that until the system flushes files to disk, or next non-
RDONLYcommit orenv_sync. This optimization maintains database integrity, but a system crash may undo the last committed transaction. I.e. it preserves the ACI (atomicity, consistency, isolation) but not D (durability) database property.This flag may be changed at any time using
env_set_flags.NOSYNCDon't flush system buffers to disk when committing a transaction. This optimization means a system crash can corrupt the database or lose the last transactions if buffers are not yet flushed to disk. The risk is governed by how often the system flushes dirty buffers to disk and how often
env_syncis called. However, if the filesystem preserves write order and theWRITEMAPflag is not used, transactions exhibit ACI (atomicity, consistency, isolation) properties and only lose D (durability). I.e. database integrity is maintained, but a system crash may undo the final transactions. Note that (NOSYNC|WRITEMAP) leaves the system with no hint for when to write transactions to disk, unlessenv_syncis called. (MAPASYNC|WRITEMAP) may be preferable.This flag may be changed at any time using
env_set_flags.MAPASYNCWhen using
WRITEMAP, use asynchronous flushes to disk. As withNOSYNC, a system crash can then corrupt the database or lose the last transactions. Callingenv_syncensures on-disk database integrity until next commit.This flag may be changed at any time using
env_set_flags.NOTLSDon't use Thread-Local Storage. Tie reader locktable slots to
MDB_txnobjects instead of to threads. I.e.txn_resetkeeps the slot reseved for theMDB_txnobject. 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.NOLOCKDon't do any locking. If concurrent access is anticipated, the caller must manage all concurrency itself. For proper operation the caller must enforce single-writer semantics, and must ensure that no readers are using old transactions while a writer is active. The simplest approach is to use an exclusive lock so that no readers may be active at all when a writer begins.
NORDAHEADTurn off readahead. Most operating systems perform readahead on read requests by default. This option turns it off if the OS supports it. Turning it off may help random read performance when the DB is larger than RAM and system RAM is full.
The option is not implemented on Windows.
NOMEMINITDon't initialize malloc'd memory before writing to unused spaces in the data file. By default, memory for pages written to the data file is obtained using malloc. While these pages may be reused in subsequent transactions, freshly malloc'd pages will be initialized to zeroes before use. This avoids persisting leftover data from other code (that used the heap and subsequently freed the memory) into the data file. Note that many other system libraries may allocate and free memory from the heap for arbitrary uses. E.g., stdio may use the heap for file I/O buffers. This initialization step has a modest performance cost so some applications may want to disable it using this flag. This option can be a problem for applications which handle sensitive data like passwords, and it makes memory checkers like Valgrind noisy. This flag is not needed with
WRITEMAP, which writes directly to the mmap instead of using malloc for pages. The initialization is also skipped ifRESERVEis used; the caller is expected to overwrite all of the memory that was reserved in that case.This flag may be changed at any time using
env_set_flags.
mode- The UNIX permissions to set on created files and semaphores.This parameter is ignored on Windows.
- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
VERSION_MISMATCH- the version of the LMDB library doesn't match the version that created the database environment.INVALID- the environment file headers are corrupted.ENOENT- the directory specified by the path parameter doesn't exist.EACCES- the user didn't have permission to access the environment files.EAGAIN- the environment was locked by another process.
-
nmdb_env_copy
public static int nmdb_env_copy(long env, long path) Unsafe version of:env_copy -
mdb_env_copy
Copies an LMDB environment to the specified path.This function may be used to make a backup of an existing environment. No lockfile is created, since it gets recreated at need.
This call can trigger significant file size growth if run in parallel with write transactions, because it employs a read-only transaction.
- Parameters:
env- an environment handle returned byenv_create. It must have already been opened successfully.path- the directory in which the copy will reside. This directory must already exist and be writable but must otherwise be empty.- Returns:
- a non-zero error value on failure and 0 on success
-
mdb_env_copy
Copies an LMDB environment to the specified path.This function may be used to make a backup of an existing environment. No lockfile is created, since it gets recreated at need.
This call can trigger significant file size growth if run in parallel with write transactions, because it employs a read-only transaction.
- Parameters:
env- an environment handle returned byenv_create. It must have already been opened successfully.path- the directory in which the copy will reside. This directory must already exist and be writable but must otherwise be empty.- Returns:
- a non-zero error value on failure and 0 on success
-
nmdb_env_copy2
public static int nmdb_env_copy2(long env, long path, int flags) Unsafe version of:env_copy2 -
mdb_env_copy2
Copies an LMDB environment to the specified path, with options.This function may be used to make a backup of an existing environment. No lockfile is created, since it gets recreated at need.
This call can trigger significant file size growth if run in parallel with write transactions, because it employs a read-only transaction.
- Parameters:
env- an environment handle returned byenv_create. It must have already been opened successfully.path- the directory in which the copy will reside. This directory must already exist and be writable but must otherwise be empty.flags- special options for this operation. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here.CP_COMPACT- Perform compaction while copying: omit free pages and sequentially renumber all pages in output. This option consumes more CPU and runs more slowly than the default.
-
mdb_env_copy2
Copies an LMDB environment to the specified path, with options.This function may be used to make a backup of an existing environment. No lockfile is created, since it gets recreated at need.
This call can trigger significant file size growth if run in parallel with write transactions, because it employs a read-only transaction.
- Parameters:
env- an environment handle returned byenv_create. It must have already been opened successfully.path- the directory in which the copy will reside. This directory must already exist and be writable but must otherwise be empty.flags- special options for this operation. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here.CP_COMPACT- Perform compaction while copying: omit free pages and sequentially renumber all pages in output. This option consumes more CPU and runs more slowly than the default.
-
nmdb_env_stat
public static int nmdb_env_stat(long env, long stat) Unsafe version of:env_stat -
mdb_env_stat
Returns statistics about the LMDB environment.- Parameters:
env- an environment handle returned byenv_createstat- the address of anMDBStatstructure where the statistics will be copied- Returns:
- a non-zero error value on failure and 0 on success
-
nmdb_env_info
public static int nmdb_env_info(long env, long stat) Unsafe version of:env_info -
mdb_env_info
Returns information about the LMDB environment.- Parameters:
env- an environment handle returned byenv_createstat- the address of anMDBEnvInfostructure where the information will be copied- Returns:
- a non-zero error value on failure and 0 on success
-
nmdb_env_sync
public static int nmdb_env_sync(long env, int force) Unsafe version of:env_sync -
mdb_env_sync
public static int mdb_env_sync(long env, boolean force) Flushes the data buffers to disk.Data is always written to disk when
txn_commitis called, but the operating system may keep it buffered. LMDB always flushes the OS buffers upon commit as well, unless the environment was opened withNOSYNCor in partNOMETASYNC. This call is not valid if the environment was opened withRDONLY.- Parameters:
env- an environment handle returned byenv_createforce- if non-zero, force a synchronous flush. Otherwise if the environment has theNOSYNCflag set the flushes will be omitted, and withMAPASYNCthey will be asynchronous.- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
EACCES- the environment is read-only.EINVAL- an invalid parameter was specified.EIO- an error occurred during synchronization.
-
nmdb_env_close
public static void nmdb_env_close(long env) Unsafe version of:env_close -
mdb_env_close
public static void mdb_env_close(long env) Closes the environment and releases the memory map.Only a single thread may call this function. All transactions, databases, and cursors must already be closed before calling this function. Attempts to use any such handles after calling this function will cause a SIGSEGV. The environment handle will be freed and must not be used again after this call.
- Parameters:
env- an environment handle returned byenv_create
-
nmdb_env_set_flags
public static int nmdb_env_set_flags(long env, int flags, int onoff) Unsafe version of:env_set_flags -
mdb_env_set_flags
public static int mdb_env_set_flags(long env, int flags, boolean onoff) Sets environment flags.This may be used to set some flags in addition to those from
env_open, or to unset these flags. If several threads change the flags at the same time, the result is undefined.- Parameters:
env- an environment handle returned byenv_createflags- the flags to change, bitwise OR'ed togetheronoff- a non-zero value sets the flags, zero clears them.- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
EINVAL- an invalid parameter was specified.
-
nmdb_env_get_flags
public static int nmdb_env_get_flags(long env, long flags) Unsafe version of:env_get_flags -
mdb_env_get_flags
Gets environment flags.- Parameters:
env- an environment handle returned byenv_createflags- the address of an integer to store the flags- Returns:
- a non-zero error value on failure and 0 on success
-
nmdb_env_get_path
public static int nmdb_env_get_path(long env, long path) Unsafe version of:env_get_path -
mdb_env_get_path
public static int mdb_env_get_path(long env, org.lwjgl.PointerBuffer path) Returns the path that was used inenv_open.- Parameters:
env- an environment handle returned byenv_createpath- address of a string pointer to contain the path. This is the actual string in the environment, not a copy. It should not be altered in any way.- Returns:
- a non-zero error value on failure and 0 on success
-
nmdb_env_set_mapsize
public static int nmdb_env_set_mapsize(long env, long size) Unsafe version of:env_set_mapsize -
mdb_env_set_mapsize
public static int mdb_env_set_mapsize(long env, long size) Sets the size of the memory map to use for this environment.The size should be a multiple of the OS page size. The default is 10485760 bytes. The size of the memory map is also the maximum size of the database. The value should be chosen as large as possible, to accommodate future growth of the database.
This function should be called after
env_createand beforeenv_open. It may be called at later times if no transactions are active in this process. Note that the library does not check for this condition, the caller must ensure it explicitly.The new size takes effect immediately for the current process but will not be persisted to any others until a write transaction has been committed by the current process. Also, only mapsize increases are persisted into the environment.
If the mapsize is increased by another process, and data has grown beyond the range of the current mapsize,
txn_beginwill returnMAP_RESIZED. This function may be called with a size of zero to adopt the new size.Any attempt to set a size smaller than the space already consumed by the environment will be silently changed to the current size of the used space.
- Parameters:
env- an environment handle returned byenv_createsize- the size in bytes- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
EINVAL- an invalid parameter was specified, or the environment has an active write transaction.
-
nmdb_env_set_maxreaders
public static int nmdb_env_set_maxreaders(long env, int readers) Unsafe version of:env_set_maxreaders -
mdb_env_set_maxreaders
public static int mdb_env_set_maxreaders(long env, int readers) Sets the maximum number of threads/reader slots for the environment.This defines the number of slots in the lock table that is used to track readers in the environment. The default is 126.
Starting a read-only transaction normally ties a lock table slot to the current thread until the environment closes or the thread exits. If
NOTLSis in use,txn_begininstead ties the slot to theMDB_txnobject until it or theMDB_envobject is destroyed.This function may only be called after
env_createand beforeenv_open.- Parameters:
env- an environment handle returned byenv_createreaders- the maximum number of reader lock table slots- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
EINVAL- an invalid parameter was specified, or the environment is already open.
-
nmdb_env_get_maxreaders
public static int nmdb_env_get_maxreaders(long env, long readers) Unsafe version of:env_get_maxreaders -
mdb_env_get_maxreaders
Gets the maximum number of threads/reader slots for the environment.- Parameters:
env- an environment handle returned byenv_createreaders- address of an integer to store the number of readers- Returns:
- a non-zero error value on failure and 0 on success
-
nmdb_env_set_maxdbs
public static int nmdb_env_set_maxdbs(long env, int dbs) Unsafe version of:env_set_maxdbs -
mdb_env_set_maxdbs
public static int mdb_env_set_maxdbs(long env, int dbs) Sets the maximum number of named databases for the environment.This function is only needed if multiple databases will be used in the environment. Simpler applications that use the environment as a single unnamed database can ignore this option.
This function may only be called after
env_createand beforeenv_open.Currently a moderate number of slots are cheap but a huge number gets expensive: 7-120 words per transaction, and every
dbi_opendoes a linear search of the opened slots.- Parameters:
env- an environment handle returned byenv_createdbs- the maximum number of databases- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
EINVAL- an invalid parameter was specified, or the environment is already open.
-
nmdb_env_get_maxkeysize
public static int nmdb_env_get_maxkeysize(long env) Unsafe version of:env_get_maxkeysize -
mdb_env_get_maxkeysize
public static int mdb_env_get_maxkeysize(long env) Gets the maximum size of keys andDUPSORTdata we can write.Depends on the compile-time constant
MAXKEYSIZE. Default 511.- Parameters:
env- an environment handle returned byenv_create
-
nmdb_env_set_userctx
public static int nmdb_env_set_userctx(long env, long ctx) Unsafe version of:env_set_userctx -
mdb_env_set_userctx
public static int mdb_env_set_userctx(long env, long ctx) Set application information associated with theMDB_env.- Parameters:
env- an environment handle returned byenv_createctx- an arbitrary pointer for whatever the application needs
-
nmdb_env_get_userctx
public static long nmdb_env_get_userctx(long env) Unsafe version of:env_get_userctx -
mdb_env_get_userctx
public static long mdb_env_get_userctx(long env) Gets the application information associated with theMDB_env.- Parameters:
env- an environment handle returned byenv_create
-
nmdb_txn_begin
public static int nmdb_txn_begin(long env, long parent, int flags, long txn) Unsafe version of:txn_begin -
mdb_txn_begin
public static int mdb_txn_begin(long env, long parent, int flags, org.lwjgl.PointerBuffer txn) Creates a transaction for use with the environment.The transaction handle may be discarded using
txn_abortortxn_commit.A transaction and its cursors must only be used by a single thread, and a thread may only have a single transaction at a time. If
NOTLSis in use, this does not apply to read-only transactions.Cursors may not span transactions.
- Parameters:
env- an environment handle returned byenv_createparent- if this parameter is non-NULL, the new transaction will be a nested transaction, with the transaction indicated byparentas its parent. Transactions may be nested to any level. A parent transaction and its cursors may not issue any other operations thantxn_commitandtxn_abortwhile it has active child transactions.flags- special options for this transaction. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here.RDONLY- This transaction will not perform any write operations.
txn- address where the newMDB_txnhandle will be stored- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
PANIC- a fatal error occurred earlier and the environment must be shut down.MAP_RESIZED- another process wrote data beyond thisMDB_env's mapsize and this environment's map must be resized as well. Seeenv_set_mapsize.READERS_FULL- a read-only transaction was requested and the reader lock table is full. Seeenv_set_maxreaders.ENOMEM- out of memory.
-
nmdb_txn_env
public static long nmdb_txn_env(long txn) Unsafe version of:txn_env -
mdb_txn_env
public static long mdb_txn_env(long txn) Returns the transaction'sMDB_env.- Parameters:
txn- a transaction handle returned bytxn_begin.
-
nmdb_txn_id
public static long nmdb_txn_id(long txn) Unsafe version of:txn_id -
mdb_txn_id
public static long mdb_txn_id(long txn) Returns the transaction's ID.This returns the identifier associated with this transaction. For a read-only transaction, this corresponds to the snapshot being read; concurrent readers will frequently have the same transaction ID.
- Parameters:
txn- a transaction handle returned bytxn_begin.- Returns:
- a transaction ID, valid if input is an active transaction
-
nmdb_txn_commit
public static int nmdb_txn_commit(long txn) Unsafe version of:txn_commit -
mdb_txn_commit
public static int mdb_txn_commit(long txn) Commits all the operations of a transaction into the database.The transaction handle is freed. It and its cursors must not be used again after this call, except with
cursor_renew.Earlier documentation incorrectly said all cursors would be freed. Only write-transactions free cursors.
- Parameters:
txn- a transaction handle returned bytxn_begin.- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
EINVAL- an invalid parameter was specified.ENOSPC- no more disk space.EIO- a low-level I/O error occurred while writing.ENOMEM- out of memory.
-
nmdb_txn_abort
public static void nmdb_txn_abort(long txn) Unsafe version of:txn_abort -
mdb_txn_abort
public static void mdb_txn_abort(long txn) Abandons all the operations of the transaction instead of saving them.The transaction handle is freed. It and its cursors must not be used again after this call, except with
cursor_renew.Earlier documentation incorrectly said all cursors would be freed. Only write-transactions free cursors. "
- Parameters:
txn- a transaction handle returned bytxn_begin.
-
nmdb_txn_reset
public static void nmdb_txn_reset(long txn) Unsafe version of:txn_reset -
mdb_txn_reset
public static void mdb_txn_reset(long txn) Resets a read-only transaction.Aborts the transaction like
txn_abort, but keeps the transaction handle.txn_renewmay reuse the handle. This saves allocation overhead if the process will start a new read-only transaction soon, and also locking overhead ifNOTLSis in use. The reader table lock is released, but the table slot stays tied to its thread orMDB_txn. Usetxn_abortto discard a reset handle, and to free its lock table slot ifNOTLSis in use.Cursors opened within the transaction must not be used again after this call, except with
cursor_renew.Reader locks generally don't interfere with writers, but they keep old versions of database pages allocated. Thus they prevent the old pages from being reused when writers commit new data, and so under heavy load the database size may grow much more rapidly than otherwise.
- Parameters:
txn- a transaction handle returned bytxn_begin.
-
nmdb_txn_renew
public static int nmdb_txn_renew(long txn) Unsafe version of:txn_renew -
mdb_txn_renew
public static int mdb_txn_renew(long txn) Renews a read-only transaction.This acquires a new reader lock for a transaction handle that had been released by
txn_reset. It must be called before a reset transaction may be used again.- Parameters:
txn- a transaction handle returned bytxn_begin.
-
nmdb_dbi_open
public static int nmdb_dbi_open(long txn, long name, int flags, long dbi) Unsafe version of:dbi_open -
mdb_dbi_open
Opens a database in the environment.A database handle denotes the name and parameters of a database, independently of whether such a database exists. The database handle may be discarded by calling
dbi_close. The old database handle is returned if the database was already open. The handle may only be closed once.The database handle will be private to the current transaction until the transaction is successfully committed. If the transaction is aborted the handle will be closed automatically. After a successful commit the handle will reside in the shared environment, and may be used by other transactions.
This function must not be called from multiple concurrent transactions in the same process. A transaction that uses this function must finish (either commit or abort) before any other transaction in the process may use this function.
To use named databases (with
name!=NULL),env_set_maxdbsmust be called before opening the environment. Database names are keys in the unnamed database, and may be read but not written.- Parameters:
txn- a transaction handle returned bytxn_begin.name- the name of the database to open. If only a single database is needed in the environment, this value may beNULL.flags- special options for this database. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here.REVERSEKEYKeys are strings to be compared in reverse order, from the end of the strings to the beginning. By default, Keys are treated as strings and compared from beginning to end.
DUPSORTDuplicate keys may be used in the database. (Or, from another perspective, keys may have multiple data items, stored in sorted order.) By default keys must be unique and may have only a single data item.
INTEGERKEYKeys are binary integers in native byte order, either
unsigned intorsize_t, and will be sorted as such. The keys must all be of the same size.DUPFIXEDThis flag may only be used in combination with
DUPSORT. This option tells the library that the data items for this database are all the same size, which allows further optimizations in storage and retrieval. When all data items are the same size, theGET_MULTIPLE,NEXT_MULTIPLEandPREV_MULTIPLEcursor operations may be used to retrieve multiple items at once.INTEGERDUPThis option specifies that duplicate data items are binary integers, similar to
INTEGERKEYkeys.REVERSEDUPThis option specifies that duplicate data items should be compared as strings in reverse order.
CREATECreate the named database if it doesn't exist. This option is not allowed in a read-only transaction or a read-only environment.
dbi- address where the newMDB_dbihandle will be stored- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
NOTFOUND- the specified database doesn't exist in the environment andCREATEwas not specified.DBS_FULL- too many databases have been opened. Seeenv_set_maxdbs.
-
mdb_dbi_open
Opens a database in the environment.A database handle denotes the name and parameters of a database, independently of whether such a database exists. The database handle may be discarded by calling
dbi_close. The old database handle is returned if the database was already open. The handle may only be closed once.The database handle will be private to the current transaction until the transaction is successfully committed. If the transaction is aborted the handle will be closed automatically. After a successful commit the handle will reside in the shared environment, and may be used by other transactions.
This function must not be called from multiple concurrent transactions in the same process. A transaction that uses this function must finish (either commit or abort) before any other transaction in the process may use this function.
To use named databases (with
name!=NULL),env_set_maxdbsmust be called before opening the environment. Database names are keys in the unnamed database, and may be read but not written.- Parameters:
txn- a transaction handle returned bytxn_begin.name- the name of the database to open. If only a single database is needed in the environment, this value may beNULL.flags- special options for this database. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here.REVERSEKEYKeys are strings to be compared in reverse order, from the end of the strings to the beginning. By default, Keys are treated as strings and compared from beginning to end.
DUPSORTDuplicate keys may be used in the database. (Or, from another perspective, keys may have multiple data items, stored in sorted order.) By default keys must be unique and may have only a single data item.
INTEGERKEYKeys are binary integers in native byte order, either
unsigned intorsize_t, and will be sorted as such. The keys must all be of the same size.DUPFIXEDThis flag may only be used in combination with
DUPSORT. This option tells the library that the data items for this database are all the same size, which allows further optimizations in storage and retrieval. When all data items are the same size, theGET_MULTIPLE,NEXT_MULTIPLEandPREV_MULTIPLEcursor operations may be used to retrieve multiple items at once.INTEGERDUPThis option specifies that duplicate data items are binary integers, similar to
INTEGERKEYkeys.REVERSEDUPThis option specifies that duplicate data items should be compared as strings in reverse order.
CREATECreate the named database if it doesn't exist. This option is not allowed in a read-only transaction or a read-only environment.
dbi- address where the newMDB_dbihandle will be stored- Returns:
- a non-zero error value on failure and 0 on success. Some possible errors are:
NOTFOUND- the specified database doesn't exist in the environment andCREATEwas not specified.DBS_FULL- too many databases have been opened. Seeenv_set_maxdbs.
-
nmdb_stat
public static int nmdb_stat(long txn, int dbi, long stat) Unsafe version of:stat -
mdb_stat
Retrieves statistics for a database. -
nmdb_dbi_flags
public static int nmdb_dbi_flags(long txn, int dbi, long flags) Unsafe version of:dbi_flags -
mdb_dbi_flags
Retrieve the DB flags for a database handle. -
nmdb_dbi_close
public static void nmdb_dbi_close(long env, int dbi) Unsafe version of:dbi_close -
mdb_dbi_close
public static void mdb_dbi_close(long env, int dbi) Closes a database handle. Normally unnecessary. Use with care:This call is not mutex protected. Handles should only be closed by a single thread, and only if no other threads are going to reference the database handle or one of its cursors any further. Do not close a handle if an existing transaction has modified its database. Doing so can cause misbehavior from database corruption to errors like
BAD_VALSIZE(since the DB name is gone).Closing a database handle is not necessary, but lets
dbi_openreuse the handle value. Usually it's better to set a biggerenv_set_maxdbs, unless that value would be large.- Parameters:
env- an environment handle returned byenv_createdbi- a database handle returned bydbi_open
-
nmdb_drop
public static int nmdb_drop(long txn, int dbi, int del) Unsafe version of:drop -
mdb_drop
public static int mdb_drop(long txn, int dbi, boolean del) Empties or deletes+closes a database.See
dbi_closefor restrictions about closing the DB handle. -
nmdb_set_compare
public static int nmdb_set_compare(long txn, int dbi, long cmp) Unsafe version of:set_compare -
mdb_set_compare
Sets a custom key comparison function for a database.The comparison function is called whenever it is necessary to compare a key specified by the application with a key currently stored in the database. If no comparison function is specified, and no special key flags were specified with
dbi_open, the keys are compared lexically, with shorter keys collating before longer keys.This function must be called before any data access functions are used, otherwise data corruption may occur. The same comparison function must be used by every program accessing the database, every time the database is used.
- Parameters:
txn- a transaction handle returned bytxn_begin.dbi- a database handle returned bydbi_opencmp- anMDBCmpFuncfunction
-
nmdb_set_dupsort
public static int nmdb_set_dupsort(long txn, int dbi, long cmp) Unsafe version of:set_dupsort -
mdb_set_dupsort
Sets a custom data comparison function for aDUPSORTdatabase.This comparison function is called whenever it is necessary to compare a data item specified by the application with a data item currently stored in the database.
This function only takes effect if the database was opened with the
DUPSORTflag.If no comparison function is specified, and no special key flags were specified with
dbi_open, the data items are compared lexically, with shorter items collating before longer items.This function must be called before any data access functions are used, otherwise data corruption may occur. The same comparison function must be used by every program accessing the database, every time the database is used.
- Parameters:
txn- a transaction handle returned bytxn_begin.dbi- a database handle returned bydbi_opencmp- anMDBCmpFuncfunction
-
nmdb_set_relfunc
public static int nmdb_set_relfunc(long txn, int dbi, long rel) Unsafe version of:set_relfunc -
mdb_set_relfunc
Sets a relocation function for aFIXEDMAPdatabase.The relocation function is called whenever it is necessary to move the data of an item to a different position in the database (e.g. through tree balancing operations, shifts as a result of adds or deletes, etc.). It is intended to allow address/position-dependent data items to be stored in a database in an environment opened with the
FIXEDMAPoption.Currently the relocation feature is unimplemented and setting this function has no effect.
- Parameters:
txn- a transaction handle returned bytxn_begin.dbi- a database handle returned bydbi_openrel- anMDBRelFuncfunction
-
nmdb_set_relctx
public static int nmdb_set_relctx(long txn, int dbi, long ctx) Unsafe version of:set_relctx -
mdb_set_relctx
public static int mdb_set_relctx(long txn, int dbi, long ctx) Sets a context pointer for aFIXEDMAPdatabase's relocation function.See
set_relfuncandMDBRelFuncfor more details.- Parameters:
txn- a transaction handle returned bytxn_begin.dbi- a database handle returned bydbi_openctx- an arbitrary pointer for whatever the application needs. It will be passed to the callback function set byMDBRelFuncas itsrelctxparameter whenever the callback is invoked.
-
nmdb_get
public static int nmdb_get(long txn, int dbi, long key, long data) Unsafe version of:get -
mdb_get
Gets items from a database.This function retrieves key/data pairs from the database. The address and length of the data associated with the specified
keyare returned in the structure to whichdatarefers.If the database supports duplicate keys (
DUPSORT) then the first data item for the key will be returned. Retrieval of other items requires the use ofcursor_get.The memory pointed to by the returned values is owned by the database. The caller need not dispose of the memory, and may not modify it in any way. For values returned in a read-only transaction any modification attempts will cause a SIGSEGV.
Values returned from the database are valid only until a subsequent update operation, or the end of the transaction.
-
nmdb_put
public static int nmdb_put(long txn, int dbi, long key, long data, int flags) Unsafe version of:put -
mdb_put
Stores items into a database.This function stores key/data pairs in the database. The default behavior is to enter the new key/data pair, replacing any previously existing key if duplicates are disallowed, or adding a duplicate data item if duplicates are allowed (
DUPSORT).- Parameters:
txn- a transaction handle returned bytxn_begin.dbi- a database handle returned bydbi_openkey- the key to store in the databasedata- the data to storeflags- special options for this operation. This parameter must be set to 0 or by bitwise OR'ing together one or more of the values described here.NODUPDATA- enter the new key/data pair only if it does not already appear in the database. This flag may only be specified if the database was opened withDUPSORT. The function will returnKEYEXISTif the key/data pair already appears in the database.NOOVERWRITE- enter the new key/data pair only if the key does not already appear in the database. The function will returnKEYEXISTif the key already appears in the database, even if the database supports duplicates (DUPSORT). Thedataparameter will be set to point to the existing item.RESERVE- reserve space for data of the given size, but don't copy the given data. Instead, return a pointer to the reserved space, which the caller can fill in later - before the next update operation or the transaction ends. This saves an extra memcpy if the data is being generated later.LMDB does nothing else with this memory, the caller is expected to modify all of the space requested. This flag must not be specified if the database was opened with
DUPSORT.APPEND- append the given key/data pair to the end of the database. This option allows fast bulk loading when keys are already known to be in the correct order. Loading unsorted keys with this flag will cause aKEYEXISTerror.APPENDDUP- as above, but for sorted dup data.
-
nmdb_del
public static int nmdb_del(long txn, int dbi, long key, long data) Unsafe version of:del -
mdb_del
Deletes items from a database.This function removes key/data pairs from the database. If the database does not support sorted duplicate data items (
DUPSORT) the data parameter is ignored.If the database supports sorted duplicates and the data parameter is
NULL, all of the duplicate data items for the key will be deleted. Otherwise, if the data parameter is non-NULLonly the matching data item will be deleted.This function will return
NOTFOUNDif the specified key/data pair is not in the database. -
nmdb_cursor_open
public static int nmdb_cursor_open(long txn, int dbi, long cursor) Unsafe version of:cursor_open -
mdb_cursor_open
public static int mdb_cursor_open(long txn, int dbi, org.lwjgl.PointerBuffer cursor) Creates a cursor handle.A cursor is associated with a specific transaction and database. A cursor cannot be used when its database handle is closed. Nor when its transaction has ended, except with
cursor_renew.It can be discarded with
cursor_close.A cursor in a write-transaction can be closed before its transaction ends, and will otherwise be closed when its transaction ends.
A cursor in a read-only transaction must be closed explicitly, before or after its transaction ends. It can be reused with
cursor_renewbefore finally closing it.Earlier documentation said that cursors in every transaction were closed when the transaction committed or aborted.
-
nmdb_cursor_close
public static void nmdb_cursor_close(long cursor) Unsafe version of:cursor_close -
mdb_cursor_close
public static void mdb_cursor_close(long cursor) Closes a cursor handle.The cursor handle will be freed and must not be used again after this call. Its transaction must still be live if it is a write-transaction.
- Parameters:
cursor- a cursor handle returned bycursor_open
-
nmdb_cursor_renew
public static int nmdb_cursor_renew(long txn, long cursor) Unsafe version of:cursor_renew -
mdb_cursor_renew
public static int mdb_cursor_renew(long txn, long cursor) Renews a cursor handle.A cursor is associated with a specific transaction and database. Cursors that are only used in read-only transactions may be re-used, to avoid unnecessary malloc/free overhead. The cursor may be associated with a new read-only transaction, and referencing the same database handle as it was created with. This may be done whether the previous transaction is live or dead.
- Parameters:
txn- a transaction handle returned bytxn_begin.cursor- a cursor handle returned bycursor_open
-
nmdb_cursor_txn
public static long nmdb_cursor_txn(long cursor) Unsafe version of:cursor_txn -
mdb_cursor_txn
public static long mdb_cursor_txn(long cursor) Returns the cursor's transaction handle.- Parameters:
cursor- a cursor handle returned bycursor_open
-
nmdb_cursor_dbi
public static int nmdb_cursor_dbi(long cursor) Unsafe version of:cursor_dbi -
mdb_cursor_dbi
public static int mdb_cursor_dbi(long cursor) Return the cursor's database handle.- Parameters:
cursor- a cursor handle returned bycursor_open
-
nmdb_cursor_get
public static int nmdb_cursor_get(long cursor, long key, long data, int op) Unsafe version of:cursor_get -
mdb_cursor_get
Retrieves by cursor.This function retrieves key/data pairs from the database. The address and length of the key are returned in the object to which
keyrefers (except for the case of theSEToption, in which thekeyobject is unchanged), and the address and length of the data are returned in the object to whichdatarefers.See
getfor restrictions on using the output values.- Parameters:
cursor- a cursor handle returned bycursor_openkey- the key for a retrieved itemdata- the data of a retrieved itemop- a cursor operationMDB_cursor_op. One of:FIRSTFIRST_DUPGET_BOTHGET_BOTH_RANGEGET_CURRENTGET_MULTIPLELASTLAST_DUPNEXTNEXT_DUPNEXT_MULTIPLENEXT_NODUPPREVPREV_DUPPREV_NODUPSETSET_KEYSET_RANGEPREV_MULTIPLE
-
nmdb_cursor_put
public static int nmdb_cursor_put(long cursor, long key, long data, int flags) Unsafe version of:cursor_put -
mdb_cursor_put
Stores by cursor.This function stores key/data pairs into the database. The cursor is positioned at the new item, or on failure usually near it.
Earlier documentation incorrectly said errors would leave the state of the cursor unchanged.
- Parameters:
cursor- a cursor handle returned bycursor_openkey- the key operated ondata- the data operated onflags- options for this operation. This parameter must be set to 0 or one of the values described here.CURRENT- replace the item at the current cursor position. Thekeyparameter must still be provided, and must match it. If using sorted duplicates (DUPSORT) the data item must still sort into the same place. This is intended to be used when the new data is the same size as the old. Otherwise it will simply perform a delete of the old record followed by an insert.NODUPDATA- enter the new key/data pair only if it does not already appear in the database. This flag may only be specified if the database was opened withDUPSORT. The function will returnKEYEXISTif the key/data pair already appears in the database.NOOVERWRITE- enter the new key/data pair only if the key does not already appear in the database. The function will returnKEYEXISTif the key already appears in the database, even if the database supports duplicates (DUPSORT).RESERVE- reserve space for data of the given size, but don't copy the given data. Instead, return a pointer to the reserved space, which the caller can fill in later - before the next update operation or the transaction ends. This saves an extra memcpy if the data is being generated later. This flag must not be specified if the database was opened withDUPSORT.APPEND- append the given key/data pair to the end of the database. No key comparisons are performed. This option allows fast bulk loading when keys are already known to be in the correct order. Loading unsorted keys with this flag will cause aKEYEXISTerror.APPENDDUP- as above, but for sorted dup data.MULTIPLE- store multiple contiguous data elements in a single request. This flag may only be specified if the database was opened withDUPFIXED. Thedataargument must be an array of twoMDBVal. Themv_sizeof the firstMDBValmust be the size of a single data element. Themv_dataof the firstMDBValmust point to the beginning of the array of contiguous data elements. Themv_sizeof the secondMDBValmust be the count of the number of data elements to store. On return this field will be set to the count of the number of elements actually written. Themv_dataof the secondMDBValis unused.
-
nmdb_cursor_del
public static int nmdb_cursor_del(long cursor, int flags) Unsafe version of:cursor_del -
mdb_cursor_del
public static int mdb_cursor_del(long cursor, int flags) Deletes current key/data pair.This function deletes the key/data pair to which the cursor refers.
This does not invalidate the cursor, so operations such as
NEXTcan still be used on it. BothNEXTandGET_CURRENTwill return the same record after this operation.- Parameters:
cursor- a cursor handle returned bycursor_openflags- options for this operation. This parameter must be set to 0 or one of the values described here.
-
nmdb_cursor_count
public static int nmdb_cursor_count(long cursor, long countp) Unsafe version of:cursor_count -
mdb_cursor_count
public static int mdb_cursor_count(long cursor, org.lwjgl.PointerBuffer countp) Returns count of duplicates for current key.This call is only valid on databases that support sorted duplicate data items
DUPSORT.- Parameters:
cursor- a cursor handle returned bycursor_opencountp- address where the count will be stored
-
nmdb_cmp
public static int nmdb_cmp(long txn, int dbi, long a, long b) Unsafe version of:cmp -
mdb_cmp
Compares two data items according to a particular database.This returns a comparison as if the two data items were keys in the specified database.
-
nmdb_dcmp
public static int nmdb_dcmp(long txn, int dbi, long a, long b) Unsafe version of:dcmp -
mdb_dcmp
Compares two data items according to a particular database.This returns a comparison as if the two items were data items of the specified database. The database must have the
DUPSORTflag. -
nmdb_reader_list
public static int nmdb_reader_list(long env, long func, long ctx) Unsafe version of:reader_list -
mdb_reader_list
Dumps the entries in the reader lock table.- Parameters:
env- an environment handle returned byenv_createfunc- anMDBMsgFuncfunctionctx- anything the message function needs
-
nmdb_reader_check
public static int nmdb_reader_check(long env, long dead) Unsafe version of:reader_check -
mdb_reader_check
Checks for stale entries in the reader lock table.- Parameters:
env- an environment handle returned byenv_createdead- number of stale slots that were cleared
-
nmdb_version
public static long nmdb_version(int[] major, int[] minor, int[] patch) Array version of:nmdb_version(long, long, long) -
mdb_version
public static @Nullable String mdb_version(int @Nullable [] major, int @Nullable [] minor, int @Nullable [] patch) Array version of:version -
nmdb_env_get_flags
public static int nmdb_env_get_flags(long env, int[] flags) Array version of:nmdb_env_get_flags(long, long) -
mdb_env_get_flags
public static int mdb_env_get_flags(long env, int[] flags) Array version of:env_get_flags -
nmdb_env_get_maxreaders
public static int nmdb_env_get_maxreaders(long env, int[] readers) Array version of:nmdb_env_get_maxreaders(long, long) -
mdb_env_get_maxreaders
public static int mdb_env_get_maxreaders(long env, int[] readers) Array version of:env_get_maxreaders -
nmdb_dbi_open
public static int nmdb_dbi_open(long txn, long name, int flags, int[] dbi) Array version of:nmdb_dbi_open(long, long, int, long) -
mdb_dbi_open
Array version of:dbi_open -
mdb_dbi_open
Array version of:dbi_open -
nmdb_dbi_flags
public static int nmdb_dbi_flags(long txn, int dbi, int[] flags) Array version of:nmdb_dbi_flags(long, int, long) -
mdb_dbi_flags
public static int mdb_dbi_flags(long txn, int dbi, int[] flags) Array version of:dbi_flags -
nmdb_reader_check
public static int nmdb_reader_check(long env, int[] dead) Array version of:nmdb_reader_check(long, long) -
mdb_reader_check
public static int mdb_reader_check(long env, int[] dead) Array version of:reader_check
-