0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-29 08:42:18 +01:00
The MongoDB Database
Go to file
Tad Marshall 2f166e0b30 Code cleanup, code style
Make the code more C++ style, less C style, make the escape
sequence parsing use readable constants instead of decimal
numbers, try to make the whole file adhere to the coding style
guidelines.
2011-12-05 17:51:46 -05:00
bson Explicitly don't allow appending unsigned ints to BSONObjBuilder SERVER-4367 2011-11-28 14:25:42 -05:00
buildscripts Provide faster feedback when tests are failing 2011-11-29 16:18:21 -05:00
client SERVER-4398 report the actual elapsed time for a sharded query, rather than all the shards' time added together 2011-12-05 17:17:41 -05:00
db Count new RS members as up before they are initialized 2011-12-05 17:36:01 -05:00
dbtests Revert "remove old code for running 'test' binary with journaling enabled (journaling is now the default)" 2011-12-04 10:36:53 -08:00
debian change startup file options to nojournal SERVER-3662 2011-08-22 14:27:43 -04:00
distsrc Always build a shared C++ library in the standalone driver's SConstruct. 2011-10-06 10:35:11 -04:00
docs Merge pull request #77 from ukd1/patch-1 2011-10-11 09:06:50 -07:00
jstests Fix some tests that use benchRun to work with auth 2011-12-05 15:25:36 -05:00
rpm Do a better job stopping mongod from RPM init script. SERVER-3824 2011-12-01 18:16:58 -05:00
s appease the compiler 2011-12-05 17:44:27 -05:00
scripting Make benchRun work with auth 2011-12-05 15:25:36 -05:00
shell Fix some tests that use benchRun to work with auth 2011-12-05 15:25:36 -05:00
third_party Code cleanup, code style 2011-12-05 17:51:46 -05:00
tools use nicer pch include format 2011-12-04 00:42:47 -05:00
util SERVER-4410 -- Windows Service --install option isn't quoting all file parameters 2011-12-02 11:26:00 -05:00
.gitattributes
.gitignore add failfile.smoke to gitignore 2011-11-29 16:23:39 -05:00
APACHE-2.0.txt Add the Apache 2 license, add licensing info to README. MINOR 2010-02-03 13:31:51 -05:00
doxygenConfig 2.1.0 prep 2011-09-10 19:56:56 -04:00
gch.py enable precompiled headers with g++ 2010-07-23 21:13:46 -04:00
GNU-AGPL-3.0.txt
mongo_astyle remove align pointer for now 2011-01-03 23:53:54 -05:00
pch.cpp concurrency 2011-10-26 15:27:19 -04:00
pch.h SERVER-2833 -- shut down cleanly on OS or Service Controller shutdown event 2011-12-01 20:42:13 -05:00
README update and normalize readme files a bit 2011-05-01 17:50:23 -04:00
SConstruct some refactoring of mongostat code 2011-11-27 02:37:08 -05:00
server.h server.h tweaking not used much yet 2011-11-17 08:05:10 -05:00
speed.js prefetch type stuff 2011-08-02 02:36:36 -04:00
targetver.h
valgrind.suppressions Start of work on valgrind test for mongos SERVER-1125 2010-05-25 23:26:42 -04:00

MongoDB README

Welcome to MongoDB!

COMPONENTS

  mongod - The database process.
  mongos - Sharding controller.
  mongo  - The database shell (uses interactive javascript).

UTILITIES

  mongodump         - MongoDB dump tool - for backups, snapshots, etc..
  mongorestore      - MongoDB restore a dump
  mongoexport       - Export a single collection to test (JSON, CSV)
  mongoimport       - Import from JSON or CSV
  mongofiles        - Utility for putting and getting files from MongoDB GridFS
  mongostat         - Show performance statistics

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.  Use the 
  shell ("mongo") for administrative tasks.

DOCUMENTATION

  http://www.mongodb.org/

MAIL LISTS AND IRC

  http://www.mongodb.org/display/DOCS/Community

32 BIT BUILD NOTES

  MongoDB 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.