From fa0d64242be440281629a6a5696d03257347e40e Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Thu, 22 Sep 2011 21:46:12 -0700 Subject: [PATCH] Doc for the MDB_NOSUBDIR env option --- libraries/libmdb/mdb.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libraries/libmdb/mdb.h b/libraries/libmdb/mdb.h index 7653542e6b..af82e566ad 100644 --- a/libraries/libmdb/mdb.h +++ b/libraries/libmdb/mdb.h @@ -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. + *
  • #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. *
  • #MDB_NOSYNC * Don't perform a synchronous flush after committing a transaction. This means * transactions will exhibit the ACI (atomicity, consistency, and isolation) -- 2.39.5