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-25 14:26:03 -04:00
bson
buildscripts Use git versions of packaging files, not git HEAD's, to avoid some skew. 2011-03-18 16:15:01 -04:00
client elim variable not used warning in visual c++ 2011-03-23 16:34:40 -04:00
db remove unused parameter to shardVersionOk 2011-03-25 09:59:50 -04:00
dbtests SERVER-2245 use original IndexSpec with full attributes in FieldRangeVector 2011-03-21 21:52:21 -07:00
debian
distsrc
docs
jstests SERVER-2831 test/demonstration of current behavior 2011-03-24 14:48:11 -07:00
lib
pcre-7.4
rpm
s remove unused parameter to shardVersionOk 2011-03-25 09:59:50 -04:00
scripting
shell collection._distinct helper to get raw info 2011-03-23 10:43:14 -04:00
third_party notes about linenoise 2011-03-25 14:26:03 -04:00
tools
util allow to change total for ProgressMeter midrun 2011-03-23 17:17:27 -04:00
.gitattributes
.gitignore
APACHE-2.0.txt
doxygenConfig
gch.py
GNU-AGPL-3.0.txt
mongo_astyle
pch.cpp
pch.h
README
SConstruct remove "weird" shell build for 64-bit mac 2011-03-24 16:33:30 -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.