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
Dwight Merriman a190583c51 MutexDebugger
2010-05-26 00:46:49 -04:00
bson maybe compile solaris 2010-05-25 17:57:50 -07:00
buildscripts Alter RPM builds after client was removed from tarballs. 2010-05-25 16:53:49 -04:00
client MutexDebugger 2010-05-26 00:46:49 -04:00
db MutexDebugger 2010-05-26 00:46:49 -04:00
dbtests MutexDebugger 2010-05-26 00:46:49 -04:00
debian Fix typos in debian/mongo.1 for SERVER-1131 2010-05-17 15:44:26 -04:00
distsrc some client package cleaning 2010-05-24 11:19:07 -04:00
docs docs/building tweak 2010-05-01 19:52:44 -04:00
jstests SERVER-109 real query skip/limit 2010-05-25 16:49:52 -07:00
lib
mongo.xcodeproj SERVER-109 fix update prescan/details match issue 2010-05-24 22:32:54 -07:00
pcre-7.4 fix pcre for utf8 in vsxproj files 2010-05-07 09:20:59 -04:00
rpm BUMP 1.5.1 2010-05-03 12:37:49 -04:00
s MutexDebugger 2010-05-26 00:46:49 -04:00
scripting MutexDebugger 2010-05-26 00:46:49 -04:00
shell Hide password from ps output SERVER-1129 2010-05-24 16:56:10 -04:00
tools Hide password from ps output SERVER-1129 2010-05-24 16:56:10 -04:00
util MutexDebugger 2010-05-26 00:46:49 -04:00
.gitattributes treat xcode config files as binary 2009-02-02 11:44:56 -05:00
.gitignore seperate package for c++ client 2010-05-23 23:30:52 -04:00
APACHE-2.0.txt Add the Apache 2 license, add licensing info to README. MINOR 2010-02-03 13:31:51 -05:00
doxygenConfig Add bson dir to doxygenConfig 2010-05-12 18:15:09 -04:00
gch.py playing with pre-compiled headers 2009-09-09 09:46:12 -04:00
GNU-AGPL-3.0.txt
pch.cpp post 1.5.1 2010-05-03 14:12:45 -04:00
pch.h remove some includes frompch.h to be faster 2010-05-25 21:53:01 -04:00
README boost etc mnior 2010-05-01 21:36:33 -04:00
SConstruct fix 64-bit osx 2010-05-24 12:52:28 -04:00
targetver.h

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

RUNNING

  To see command line options invoke:

    $ ./mongod --help

  To run a single server database:

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

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.

LICENSING

  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 debian/ directory, the rpm/
  directory, and all subdirectories thereof are made available under
  the terms of the Apache License, version 2.0.