国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > MongoDB > 正文

MongoDB 快速入門

2020-10-29 18:54:54
字體:
供稿:網(wǎng)友

對 MongoDb 文檔數(shù)據(jù)庫感興趣,要安裝認(rèn)識下。

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

啟動 mongod

復(fù)制代碼 代碼如下:

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 指定數(shù)據(jù)庫的目錄,默認(rèn)是 /data/db,win 沒有 /data/db 目錄,所以直接雙擊 mongod 是啟動不了。默認(rèn)端口是 27017

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

服務(wù)器啟動后,用客戶端試用下,它自帶有個客戶端(MongoDB shell)。bin/mongo.exe
復(fù)制代碼 代碼如下:

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

復(fù)制代碼 代碼如下:

easy_install pymongo


復(fù)制代碼 代碼如下:

from pymongo import Connection
connection = Connection()
db = connection.test
for f in db.foo.find():
print "a=%s, _id=%s" % (f['a'], f['_id'])

可以看到結(jié)果。a=1.0, _id=4b946bc03f78000000001542。_id 是mongo 內(nèi)部的字段。

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

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 华池县| 南川市| 宿州市| 齐齐哈尔市| 双城市| 惠来县| 仪征市| 博白县| 分宜县| 新源县| 临沭县| 渝中区| 阜新市| 吉水县| 阜城县| 沽源县| 晋中市| 左贡县| 沾益县| 邵阳县| 蕲春县| 徐州市| 平昌县| 乐清市| 罗甸县| 通许县| 临沧市| 兴安盟| 乐安县| 偏关县| 榆树市| 客服| 潼南县| 张北县| 五台县| 新营市| 双鸭山市| 来宾市| 阿合奇县| 石台县| 翁源县|