0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
The MongoDB Database
Go to file
2011-03-17 11:52:01 -07:00
bson Changes to source needed to compile cleanly with clang++ 2011-03-16 17:25:53 -04:00
buildscripts better debugging 2011-03-10 12:01:16 -05:00
client standards compliant and leak a list on shutdown to avoid race condition SERVER-2704 2011-03-17 14:50:38 -04:00
db SERVER-2662 don't attempt to yield a query after an earlier yield fails and drops the cursor 2011-03-17 11:52:01 -07:00
dbtests a little easier to parse and read 2011-03-12 19:01:21 -05:00
debian Wait 300s for server shutdown in deb initscripts. SERVER-2041, maybe. 2011-03-17 12:32:30 -04:00
distsrc
docs
jstests SERVER-2662 don't attempt to yield a query after an earlier yield fails and drops the cursor 2011-03-17 11:52:01 -07:00
lib
pcre-7.4
rpm Remove a hidden option, and SERVER-2774. 2011-03-17 12:08:08 -04:00
s prevent shutdown race condtion SERVER-2704 2011-03-17 14:50:38 -04:00
scripting
shell clean listfiles 2011-03-17 02:17:31 -04:00
tools Changes to source needed to compile cleanly with clang++ 2011-03-16 17:25:53 -04:00
util file mode 2011-03-17 14:50:38 -04:00
.gitattributes
.gitignore
APACHE-2.0.txt
doxygenConfig
gch.py
GNU-AGPL-3.0.txt
mongo_astyle
pch.cpp
pch.h
README
SConstruct --clang option to scons 2011-03-16 17:25:53 -04:00
targetver.h
valgrind.suppressions

MongoDB README

DOCUMENTATION

  http://www.mongodb.org/

COMPONENTS

  mongod - The database process.
  mongos - Sharding controller.
  mongo  - The database shell (uses interactive javascript).

BUILDING
      
  See docs/building.md, also www.mongodb.org search for "Building".

RUNNING

  For command line options invoke:

    $ ./mongod --help

  To run a single server database:

    $ mkdir /data/db
    $ ./mongod
    $
    $ # The mongo javascript shell connects to localhost and test database by default:
    $ ./mongo 
    > help

DRIVERS

  Client drivers for most programming languages are available at mongodb.org.

NOTES

  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 work fine with small development databases.

LICENSE

  Most MongoDB source files are made available under the terms of the
  GNU Affero General Public License (AGPL).  See individual files for
  details.

  As an exception, the files in the client/, debian/, rpm/,
  utils/mongoutils, and all subdirectories thereof are made available under
  the terms of the Apache License, version 2.0.