We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Description: 10gen database
Homepage: http://www.10gen.com/wiki/db
Clone URL: git://github.com/10gen/mongo.git
Dwight (author)
Mon Sep 15 12:30:53 -0700 2008
commit  379a7562629ff0803cfb30e0abfcddcbee046a19
tree    3351844f2e8cf26f65af1318ee95297ac5d58345
parent  f9fd02c198553a587cffbcb4a61d774d93998b38
mongo /
name age message
file .gitignore Fri Dec 12 11:22:29 -0800 2008 Ignore dbgrid binary [Aaron]
file GNU-AGPL-3.0.txt Tue Jul 22 06:45:40 -0700 2008 license [erh]
file README Tue Jul 22 06:56:45 -0700 2008 tweak readme [Dwight]
directory bin/ Tue Aug 26 17:24:08 -0700 2008 --master default in run.tcs [yellow]
directory boost/ Sun Aug 24 16:21:35 -0700 2008 rebuilt boost [dwight]
directory db/ Thu Jan 08 19:05:51 -0800 2009 SWAG at flagging query errors via the flags int... [geir]
directory dbgrid/ Tue Jan 06 07:48:09 -0800 2009 don't create local db if running without replic... [Dwight]
directory grid/ Thu Jan 08 19:05:51 -0800 2009 SWAG at flagging query errors via the flags int... [geir]
directory lib/ Mon Nov 05 11:44:26 -0800 2007 boost [Dwight]
directory mongo.xcodeproj/ Thu Dec 18 10:51:59 -0800 2008 Update xcode project [Aaron]
directory pcre-7.4/ Thu Jan 08 06:52:51 -0800 2009 vc++ fixes [erh]
file stdafx.cpp Mon Jan 05 12:30:07 -0800 2009 getlasterror [Dwight]
file stdafx.h Tue Jan 06 15:25:38 -0800 2009 try not to die in segv printouts with deadlocks... [Dwight]
file stdafx.h.gch Fri Oct 19 16:35:48 -0700 2007 first commit [Dwight]
file targetver.h Sun Dec 28 17:28:49 -0800 2008 Replace tab indentation with spaces [Aaron]
directory util/ Thu Jan 08 06:37:18 -0800 2009 forgot [Dwight]
README
Mongo Database README

DOCUMENTATION

http://www.10gen.com/wiki/db

ORGANIZATION

db/             : core database source code
grid/           : socket messaging stuff
util/           : util classes

BUILDING

cd db
make clean && make

RUNNING

Run ./db and command line options will display.

COMPILER VERSIONS

Mongo has been tested with GCC 4.1.2 and Visual Studio 2008.  Older versions
of GCC may not be happy.

NOTES

Mongo uses the 10gen appserver and the Java Virtual Machine to execute 
user program code in the database.  This feature is optional -- if you would 
like to run the database without these installed, run with the --nojni 
option.  With --nojni specified, the db.eval() and $where features are no 
longer available.

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 should work fine with small development databases.