CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 26 Aug 2025 16:36:24 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100324173911
location: https://web.archive.org/web/20100324173911/https://github.com/mongodb/mongo/tree/r0.9.1
server-timing: captures_list;dur=0.742939, exclusion.robots;dur=0.023006, exclusion.robots.policy;dur=0.009615, esindex;dur=0.010825, cdx.remote;dur=242.271705, LoadShardBlock;dur=713.607947, PetaboxLoader3.resolve;dur=405.005541, PetaboxLoader3.datanode;dur=307.761138
x-app-server: wwwb-app239
x-ts: 302
x-tr: 1100
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: wb-p-SERVER=wwwb-app239; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Tue, 26 Aug 2025 16:36:25 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Wed, 24 Mar 2010 17:39:11 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "d23d6bba8d9c3788d2f1db6703e88f36"
x-archive-orig-x-runtime: 303ms
x-archive-orig-content-length: 35391
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 24 Mar 2010 17:39:11 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sun, 31 May 2009 18:28:40 GMT", ; rel="prev memento"; datetime="Mon, 07 Dec 2009 20:19:10 GMT", ; rel="memento"; datetime="Wed, 24 Mar 2010 17:39:11 GMT", ; rel="next memento"; datetime="Tue, 25 May 2010 19:22:07 GMT", ; rel="last memento"; datetime="Sun, 25 Jul 2010 08:09:48 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_14_20100324152546_crawl103-c/52_14_20100324173858_crawl101.arc.gz
server-timing: captures_list;dur=0.630414, exclusion.robots;dur=0.021583, exclusion.robots.policy;dur=0.007531, esindex;dur=0.012287, cdx.remote;dur=31.794121, LoadShardBlock;dur=419.722483, PetaboxLoader3.datanode;dur=593.623567, PetaboxLoader3.resolve;dur=450.255321, load_resource;dur=760.740503
x-app-server: wwwb-app239
x-ts: 200
x-tr: 1304
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=5
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
mongodb's mongo at r0.9.1 - GitHub
mongodb / mongo
- Source
- Commits
- Network (41)
- Downloads (0)
- Graphs
-
Tree:
r0.9.1
click here to add a description
click here to add a homepage
mongo /
README
Mongo DB README DOCUMENTATION https://www.mongodb.org/display/DOCS/Home COMPONENTS mongod - The database process. mongos - Sharding controller (sharding available later in Q209). mongo - The interact javascript db shell. BUILDING - Pre-requisite for 'mongo', the MongoDB interactive shell: The shell requires the library ../v8/libv8. There is no v8 binary distro, so we recommend you install and build V8 as follows: $ cd .. $ svn checkout https://v8.googlecode.com/svn/trunk/ v8 $ cd v8 $ scons libv8.a To compile the unit tests, you need to install the unit test framework from: https://unittest.red-bean.com/ $ cd .. $ svn co https://svn.red-bean.com/unittest/trunk/ unittest $ cd unittest $ ./configure $ make $ sudo make install - Then use scons to build. If you want to build everything (mongod, mongo, tools, etc): $ scons . If you only want to build the database: $ scons RUNNING Run ./mongod 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. You may still need JVM libraries which are statically linked. 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 work fine with small development databases. --- WINDOWS --- See also https://www.mongodb.org/display/DOCS/Building+for+Windows COMPILING REQUIREMENTS - python 2.6 (for scons) - scons - boost 1.35 - vc++ express - windows sdk - tested with v6.0 v6.0a - java sdk 1.6 you have to add java\jdk\bin\ to your path scons mkdir \data\ mkdir \data\db db\db run