]> git.sur5r.net Git - openldap/commitdiff
Doc for the MDB_NOSUBDIR env option
authorHoward Chu <hyc@symas.com>
Fri, 23 Sep 2011 04:46:12 +0000 (21:46 -0700)
committerHoward Chu <hyc@symas.com>
Fri, 23 Sep 2011 04:46:12 +0000 (21:46 -0700)
libraries/libmdb/mdb.h

index 7653542e6b323f5308f05aefd21becfa32e83513..af82e566addb628b550f85e278fe761d4dde854d 100644 (file)
@@ -307,6 +307,12 @@ int  mdb_env_create(MDB_env **env);
         *              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.
+        *      <li>#MDB_NOSUBDIR
+        *              By default, MDB creates its environment in a directory whose
+        *              pathname is given in \b path, and creates its data and lock files
+        *              under that directory. With this option, \b path is used as-is for
+        *              the database main data file. The database lock file is the \b path
+        *              with "-lock" appended.
         *      <li>#MDB_NOSYNC
         *              Don't perform a synchronous flush after committing a transaction. This means
         *              transactions will exhibit the ACI (atomicity, consistency, and isolation)