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
2010-06-22 14:13:06 -04:00
bson Fix a typo. 2010-06-22 16:26:56 +08:00
buildscripts
client fix bad result handling SERVER-1275 2010-06-21 17:57:56 -04:00
db not sure why _timeTracker was declared extern but definitely was 2010-06-22 10:38:06 -04:00
dbtests
debian
distsrc
docs
jstests yield based off of scanned and time 2010-06-22 06:37:49 -04:00
lib
mongo.xcodeproj enhance repair test 2010-06-21 20:38:26 -07:00
pcre-7.4
rpm
s didn't mean to compile that 2010-06-21 18:28:52 -04:00
scripting
shell fix shell help 2010-06-22 14:13:06 -04:00
tools
util not sure why _timeTracker was declared extern but definitely was 2010-06-22 10:38:06 -04:00
.gitattributes
.gitignore
APACHE-2.0.txt
doxygenConfig
gch.py
GNU-AGPL-3.0.txt
pch.cpp
pch.h
README
SConstruct Make MongoDB compile and work on OpenBSD (gcc4 archs, tested on OpenBSD-current/amd64). 2010-06-22 06:49:49 +08: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.