MongoDB 快速入門

來源:互聯網
上載者:User

對 MongoDb 文檔資料庫感興趣,要安裝認識下。

到官方下載 win 版 http://www.mongodb.org/display/DOCS/Downloads 目前最新穩定版是 1.2.4。解壓到 f:/sofr/mongodb-win32-i386-1.2.4。

啟動 mongod

複製代碼 代碼如下:F:\soft\mongodb-win32-i386-1.2.4>bin\mongod.exe --dbpath=f:/mongodb
Mon Mar 08 11:13:17 Mongo DB : starting : pid = 0 port = 27017 dbpath = f:/mongodb master = 0 slave
= 0 32-bit

** NOTE: when using MongoDB 32 bit, you are limited to about 2 gigabytes of data
** see http://blog.mongodb.org/post/137788967/32-bit-limitations for more

Mon Mar 08 11:13:18 db version v1.2.4, pdfile version 4.5
Mon Mar 08 11:13:18 git version: 5cf582d3d96b882c400c33e7670b811ccd47f477
Mon Mar 08 11:13:18 sys info: windows (5, 1, 2600, 2, 'Service Pack 3') BOOST_LIB_VERSION=1_35
Mon Mar 08 11:13:18 waiting for connections on port 27017

--dbpath 指定資料庫的目錄,預設是 /data/db,win 沒有 /data/db 目錄,所以直接雙擊 mongod 是啟動不了。預設連接埠是 27017

linux 下我用 legacy-static 版,因為源碼編譯沒成功。

伺服器啟動後,用用戶端試用下,它內建有個用戶端(MongoDB shell)。bin/mongo.exe 複製代碼 代碼如下:F:\soft\mongodb-win32-i386-1.2.4>bin\mongo.exe
MongoDB shell version: 1.2.4
url: test
connecting to: test
type "exit" to exit
type "help" for help
> use test
switched to db test
> db.foo.save({a:1})
> db.foo.find()
{ "_id" : ObjectId("4b946bc03f78000000001542"), "a" : 1 }
>

mongod.exe 後端可以看到日誌。
MongoDB 用戶端豐富,我用 python 試下(安裝請看:http://api.mongodb.org/python/1.4%2B/installation.html)。安裝 pymongo

複製代碼 代碼如下:easy_install pymongo 複製代碼 代碼如下:from pymongo import Connection
connection = Connection()
db = connection.test
for f in db.foo.find():
print "a=%s, _id=%s" % (f['a'], f['_id'])

可以看到結果。a=1.0, _id=4b946bc03f78000000001542。_id 是mongo 內部的欄位。

它的像 sql 的查詢比較吸引人 ……
原文:http://blog.chenlb.com/2010/03/mongodb-quick-start.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.