summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2008-07-22 09:54:25 -0400
committerDwight <dmerriman@gmail.com>2008-07-22 09:54:25 -0400
commitb4103f3a334d9259eb66922f8b4a1d196a4454e5 (patch)
tree48fb6ec4f50042a81811c5503c15a92cec0f44b6 /README
parent431d1aaae7937282728b48645131d3ab49b8738c (diff)
downloadmongo-b4103f3a334d9259eb66922f8b4a1d196a4454e5.tar.gz
readme added
Diffstat (limited to 'README')
-rw-r--r--README33
1 files changed, 33 insertions, 0 deletions
diff --git a/README b/README
new file mode 100644
index 00000000000..d76f13433f3
--- /dev/null
+++ b/README
@@ -0,0 +1,33 @@
+Mongo Database README
+
+DOCUMENTATION
+
+http://www.10gen.com/wiki/db
+
+ORGANIZATION
+
+db/ : core database source code
+grid/ : socket messaging stuff
+util/ : util classes
+
+BUILDING
+
+cd db
+make clean && make
+
+RUNNING
+
+Run ./db and command line options will display.
+
+NOTES
+
+Mongo uses the 10gen appserver and the Java Virtual Machine to execute
+user program code in the database. This feature is optional -- if you would
+like to run the database without these installed, run with the --nojni
+option. With --nojni specified, the db.eval() and $where features are no
+longer available.
+
+Mongo uses memory mapped files. If built as a 32 bit executable, you will
+not be able to work with large (multi-gigabyte) databases. However, 32 bit
+builds should work fine with small development databases.
+