码迷,mamicode.com
首页 >  
搜索关键字:embedded mongodb    ( 10830个结果
mongodb分片
1.数据分片:2.访问分片后的数据的过程:
分类:数据库   时间:2014-09-10 01:34:29    阅读次数:197
MongoDB的监控
MongoDB的监控首选:mongostatmongostat实在是太有用了,如果DB出现了异常,我第一反应就是查看mongostat。如果是运维的话,喝着咖啡,看着mongostat,生活真是惬意啊。运行很简单,./mongostat --host 10.45.3.97 --port 20127主...
分类:数据库   时间:2014-09-10 00:26:29    阅读次数:238
mongoDB学习(二)之常用的修改操作
插入文档(插入数据库) db.person.insert({_id:"0001",name"yuexin"}) 清除数据 db.person.drop() 批量插入文档 shell中不支持批量插入 完成批量插入使用for循环  for(var i=0;i .. db.persons.insert({_id:i,name:"yuexin"+i}) .. } save操作 ...
分类:数据库   时间:2014-09-09 18:28:19    阅读次数:227
MongoDB【UVE】 - 连接Connection
简单的填写你所需要连接的MongoDB的库,即可。 ? 这里为了方便,我们的名字也就是Server的 IP地址 simple Tips , 简单的记录。
分类:数据库   时间:2014-09-09 16:25:59    阅读次数:247
MongoDB五种树形结构表示法
MongoDB五种树形结构表示法MongoDB五种树形结构表示法第一种:父链接结构db.categories.insert( { _id: "MongoDB", parent: "Databases" } )db.categories.insert( { _id: "dbm", parent: "D...
分类:数据库   时间:2014-09-09 15:58:28    阅读次数:332
MongoDB
http://www.mongodb.org/
分类:数据库   时间:2014-09-09 15:52:38    阅读次数:497
MONDODB如何存储树形数据
[ mongoDB ] - 文档型数据库设计模式-如何存储树形数据 [转]在数据库中存储树形结构的数据,这是一个非常普遍的需求,典型的比如论坛系统的版块关系。在传统的关系型数据库中,就已经产生了各种解决方案。此文以存储树形结构数据为需求,分别描述了利用关系型数据库和文档型数据库作为存储的几种设计模式...
分类:数据库   时间:2014-09-09 15:48:08    阅读次数:266
mongodb常用操作方法
成功启动MongoDB后,再打开一个命令行窗口输入mongo,就可以进行数据库的一些操作。输入help可以看到基本操作命令,只是MongoDB没有创建数据库的命令,但有类似的命令如:如果你想创建一个“myTest”的数据库,先运行use myTest命令,之后就做一些操作(如:db.createCo...
分类:数据库   时间:2014-09-09 15:39:48    阅读次数:405
【MongoDB】Download the mongoDB
First open the broswer and type the following url in the address bar.  http://www.mongodb.com/ then you will view the the next page. click the download mongodb button, and then regi...
分类:数据库   时间:2014-09-09 12:54:28    阅读次数:269
【MongoDB】Installation of MongoDB
First what I wanna make clear is that in the official website the detailed process of installation has been described. you could call it throught the link  http://docs.mongodb.org/manual/tutorial/ins...
分类:数据库   时间:2014-09-09 12:52:38    阅读次数:219
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!