0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-29 00:32:18 +01:00
The MongoDB Database
Go to file
2011-10-05 18:34:13 -04:00
bson allow appending elements to BSONObjBuilders 2011-10-04 11:27:41 -04:00
buildscripts Make package name suffix handling slightly smarter in packager.py. 2011-09-12 11:56:55 -04:00
client better logging of stale configs for parallel cursor SERVER-3982 2011-10-04 18:10:50 -04:00
db SERVER-3299 trim hostname on replica set reconfig 2011-10-05 18:34:13 -04:00
dbtests towards cloud/azure 2011-10-04 22:46:43 -04:00
debian change startup file options to nojournal SERVER-3662 2011-08-22 14:27:43 -04:00
distsrc snappy license info SERVER-3805 2011-09-12 12:28:31 -04:00
docs SERVER-3730: Disallow himBHfields in modifier ops 2011-09-20 20:44:19 -04:00
jstests SERVER-3299 trim hostname on replica set reconfig 2011-10-05 18:34:13 -04:00
lib
rpm BUMP 2.0.0-rc2 2011-09-07 01:07:35 -04:00
s SERVER-3561: validation to avoid chunksize 0 2011-10-05 12:04:45 -04:00
scripting - SERVER-4025: segv in V8 when certain special objects (e.g. DBCollection) are converted from JS to BSON 2011-10-05 13:52:59 -07:00
shell SERVER-3818: Documented insert command within js shell. 2011-10-05 17:58:46 -04:00
third_party use PCRECPP_STATIC SERVER-3992 2011-10-01 11:21:13 -04:00
tools SERVER-3299 trim hostname on replica set reconfig 2011-10-05 18:34:13 -04:00
util SERVER-3299 trim hostname on replica set reconfig 2011-10-05 18:34:13 -04:00
.gitattributes
.gitignore mongooplog -new tool for replaying oplogs SERVER-3873 2011-09-15 10:50:05 -04:00
APACHE-2.0.txt
doxygenConfig 2.1.0 prep 2011-09-10 19:56:56 -04:00
gch.py
GNU-AGPL-3.0.txt
mongo_astyle
pch.cpp
pch.h Tell glibcxx to use glibc's optimized str functions 2011-08-08 19:52:56 -04:00
README
SConstruct SERVER-3821: fixed syntax error in SConstruct file 2011-09-28 15:49:48 -04:00
server.h Merge branch 'master' of github.com:mongodb/mongo 2011-10-03 13:43:34 -04:00
speed.js
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.