summaryrefslogtreecommitdiff
path: root/db/db.cpp
diff options
context:
space:
mode:
authordwight <dwight@10gen.com>2011-07-31 08:36:46 -0400
committerdwight <dwight@10gen.com>2011-07-31 08:36:46 -0400
commitfb8b8936656d94617e3c3b416c24e4660706610c (patch)
treeccde33e9ef56355a1564978f19e9bdc71e6f9b1e /db/db.cpp
parent3c55e8ccbaa9acff4cf9594771f67e935b18d9a4 (diff)
downloadmongo-fb8b8936656d94617e3c3b416c24e4660706610c.tar.gz
make journaling the default on 64 bit
Diffstat (limited to 'db/db.cpp')
-rw-r--r--db/db.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/db/db.cpp b/db/db.cpp
index f9412208f71..1ea32b9c561 100644
--- a/db/db.cpp
+++ b/db/db.cpp
@@ -570,6 +570,7 @@ int main(int argc, char* argv[]) {
("jsonp","allow JSONP access via http (has security implications)")
("noauth", "run without security")
("nohttpinterface", "disable http interface")
+ ("nojournal", "disable journaling (journaling is on by default for 64 bit)")
("noprealloc", "disable data file preallocation - will often hurt performance")
("noscripting", "disable scripting engine")
("notablescan", "do not allow table scans")
@@ -622,9 +623,7 @@ int main(int argc, char* argv[]) {
("pretouch", po::value<int>(), "n pretouch threads for applying replicationed operations")
("command", po::value< vector<string> >(), "command")
("cacheSize", po::value<long>(), "cache size (in MB) for rec store")
- // these move to unhidden later:
("nodur", "disable journaling (currently the default)")
- ("nojournal", "disable journaling (currently the default)")
// things we don't want people to use
("nocursors", "diagnostic/debugging option that turns off cursors DO NOT USE IN PRODUCTION")
("nohints", "ignore query hints")