0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 00:56:44 +01:00
The MongoDB Database
Go to file
2011-09-09 13:44:15 -04:00
bson Don't try to backfill more than 1.5M array elements SERVER-3750 2011-09-01 20:29:22 -04:00
buildscripts combine sm in source 2011-08-21 01:34:54 -04:00
client extraneous include breaking buildbot 2011-08-21 01:34:14 -04:00
db put connectionId in currentOp() 2011-09-09 13:44:15 -04:00
dbtests SERVER-3760 fix memcmp to now potentially go to far on one of the input arrays. 2011-09-06 11:58:17 -04:00
debian change startup file options to nojournal SERVER-3662 2011-08-22 14:27:43 -04:00
distsrc compile on linux3 SERVER-3457 2011-07-28 19:54:51 -04:00
docs moved line #s 2011-07-05 09:12:27 -04:00
jstests Move slow replica set test to slowNightly directory. 2011-09-07 18:07:29 -04:00
lib
rpm BUMP 2.0.0-rc2 2011-09-07 01:07:35 -04:00
s when running checkShardVersion, need to make sure we do on actual connection, not replica set connection SERVER-3683 2011-09-04 00:47:56 -04:00
scripting fix v8 error reporting 2011-09-07 17:29:18 -04:00
shell ReplSetTest.stopmaster helper 2011-09-04 00:48:26 -04:00
third_party Fix off-by-one in linenoise SERVER-3394 2011-09-09 13:39:07 -04:00
tools --ssl for tools SERVER-3729 2011-09-01 23:21:56 -04:00
util fix thread name setting when using conn 2011-09-09 13:44:15 -04:00
.gitattributes
.gitignore remove bad files for sm SERVER-3659 2011-08-21 10:40:24 -04:00
APACHE-2.0.txt
doxygenConfig post 2.0.0-rc2 2011-09-07 12:15:02 -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 Fixes for distributed lock handling time skew. 2011-03-01 14:15:26 -05:00
pch.h Tell glibcxx to use glibc's optimized str functions 2011-08-08 19:52:56 -04:00
README update and normalize readme files a bit 2011-05-01 17:50:23 -04:00
SConstruct ssl on osx needs libcrypto 2011-09-01 23:16:21 -04:00
server.h Use more common (and readable) names for branch prediction hints 2011-08-02 18:50:04 -04:00
speed.js prefetch type stuff 2011-08-02 02:36:36 -04:00
targetver.h
valgrind.suppressions

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.