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-02-23 20:51:10 -05:00
bson getpid works on darwin and sunos (and other places as well) 2011-02-18 11:36:32 -05:00
buildscripts
client better sync cluster update diagnostics 2011-02-18 01:56:48 -05:00
db comment 2011-02-23 20:51:07 -05:00
dbtests add header to vcxproj 2011-02-23 20:51:10 -05:00
debian BUMP 1.8.0-rc0 2011-02-22 15:28:02 -05:00
distsrc
docs
jstests wait for group commit 2011-02-18 21:04:21 -05:00
lib
pcre-7.4
rpm BUMP 1.8.0-rc0 2011-02-22 15:28:02 -05:00
s shouldn't be able to use "local" db via mongos SERVER-2590 2011-02-18 16:45:34 -05:00
scripting
shell db.currentOp() added all option 2011-02-18 10:16:47 -05:00
tools update mongorestore for large documents SERVER-2575 2011-02-17 10:14:09 -05:00
util default off devtimer 2011-02-23 20:51:08 -05:00
.gitattributes
.gitignore
APACHE-2.0.txt
doxygenConfig post 1.8.0-rc0 2011-02-22 23:40:39 -05:00
gch.py
GNU-AGPL-3.0.txt
mongo_astyle
pch.cpp
pch.h
README
SConstruct cleaning module system a bit 2011-02-16 18:50:09 -05: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.