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-05-02 19:05:10 -07:00
bson
buildscripts
client test for SERVER-3014 2011-04-28 13:15:57 -04:00
db update vcxproj files for ramlog.cpp 2011-05-02 20:53:11 -04:00
dbtests fix jstests compile 2011-05-02 19:05:10 -07:00
debian BUMP 1.9.0 2011-05-01 02:40:52 -04:00
distsrc update and normalize readme files a bit 2011-05-01 17:50:23 -04:00
docs
jstests SERVER-958 Looser bounds for multikey indexes with parallel nested fields 2011-05-02 10:33:53 -07:00
lib
pcre-7.4
rpm BUMP 1.9.0 2011-05-01 02:40:52 -04:00
s update vcxproj files for ramlog.cpp 2011-05-02 20:53:11 -04:00
scripting fix compile for spidermonkey 2011-05-02 16:08:41 -07:00
shell SERVER-2579: all v8 object creation is now lazy. 2011-05-02 16:08:41 -07:00
third_party
tools
util update vcxproj files for ramlog.cpp 2011-05-02 20:53:11 -04:00
.gitattributes
.gitignore
APACHE-2.0.txt
doxygenConfig post 1.9.0 2011-05-01 09:30:05 -04:00
gch.py
GNU-AGPL-3.0.txt
mongo_astyle
pch.cpp
pch.h
README update and normalize readme files a bit 2011-05-01 17:50:23 -04:00
SConstruct cleaning ramlog 2011-05-02 14:26: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.