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-04-30 18:55:22 -04:00
bson cleaner 2011-04-14 13:49:23 -04:00
buildscripts need a bigger oplog size 2011-04-26 10:52:54 -04:00
client test for SERVER-3014 2011-04-28 13:15:57 -04:00
db fix vcxproj 2011-04-30 14:59:20 -04:00
dbtests fix vcxproj 2011-04-30 14:59:20 -04:00
debian Document --version in man pages. Cf. SERVER-2691. 2011-03-18 11:05:32 -04:00
distsrc fix cpp driver sconstruct linking 2011-04-30 18:55:22 -04:00
docs
jstests shell helpers for turning on/off balancer SERVER-2680 2011-04-29 17:37:45 -04:00
lib
pcre-7.4
rpm Remove a hidden option, and SERVER-2774. 2011-03-17 12:08:08 -04:00
s fix vcxproj 2011-04-30 14:59:20 -04:00
scripting SERVER-2579: added framework for lazy v8 2011-04-25 11:02:52 -07:00
shell put hostname in the log. should make support a little easier. 2011-04-29 23:22:21 -04:00
third_party home and end keys for linux and rxvt 2011-04-20 14:40:07 -04:00
tools also needs unsigned 2011-04-28 07:28:08 -07:00
util use volatile in List1 2011-04-30 15:12:34 -04:00
.gitattributes
.gitignore mongotop for collection load 2011-03-06 18:03:53 -05:00
APACHE-2.0.txt
doxygenConfig master is now 1.9 2011-02-28 20:58:32 -05:00
gch.py
GNU-AGPL-3.0.txt
mongo_astyle
pch.cpp Fixes for distributed lock handling time skew. 2011-03-01 14:15:26 -05:00
pch.h support boost 1.46 SERVER-2324 181? 2011-03-18 03:29:41 -04:00
README
SConstruct reduce queryutil dependencies a bit 2011-04-25 13:29:50 -07: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.