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-01 10:50:39 -05:00
bson
buildscripts Put the right changelogs and initscripts in .debs. 2011-02-28 17:41:15 -05:00
client typo 2011-02-27 09:25:05 -05:00
db fix invalid 'unexpected file in journal directory' error message. 2011-03-01 08:05:51 -05:00
dbtests lowPriority option to RWLock 2011-03-01 02:37:58 -05:00
debian
distsrc
docs
jstests don't allow changing from localhost to hostname SERVER-2622 2011-02-28 12:57:58 -05:00
lib
pcre-7.4
rpm
s make sure not to use memory in a cursor when yielding SERVER-2447 2011-03-01 10:50:39 -05:00
scripting
shell
tools
util lowPriority option to RWLock 2011-03-01 02:37:58 -05:00
.gitattributes
.gitignore
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
pch.h
README
SConstruct
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.