Mongodb笔记

Posted on 2011-09-27 09:23  蛇小狼  阅读(204)  评论(0编辑  收藏  举报

1, 启动mongodb

mongod --dbpath d:\db

2, 启动为系统应用

mongod --dbpath d:\db --install --logpath d:\db\log.txt

3, 在系统管理上删除mongodb

sc delete Mongodb

4, 安装pymongo

easy_install pymongo

5, 简单的测试

from pymongo import Connection

conn = Connection("localhost")

db = conn.foo

test = {"name":"imouren"}

db.foo.save(test)

cursor = db.foo.find()

for i in cursor:

    print i