一、废话从13年1月份接触mongodb进行开发,开发了旅游标签服务、微博标签检索系统、地图服务、web APP服务...使用MongoDB的场景从.NET、JAVA环境转到了node.js平台。越发觉Node.js和mongodb结合感觉的很好。感觉mongodb和node.js是天生的一对。的确...
分类:
数据库 时间:
2014-09-25 19:43:47
阅读次数:
325
开篇前mongoc_init()Synopsisvoidmongoc_init (void);DescriptionThis function should be called at the beginning of every program using the MongoDB C driver....
分类:
数据库 时间:
2014-09-25 14:19:09
阅读次数:
323
1.下载安装包wget http://fastdl.mongodb.org/linux/mongodb-linux-i686-1.8.2.tgz下载完成后解压缩压缩包tar zxf mongodb-linux-i686-1.8.2.tgz2. 安装准备将mongodb移动到/usr/local/se...
分类:
数据库 时间:
2014-09-25 13:29:48
阅读次数:
270
In the last four blog, we talked about the high query operation of mongodb. Now in this blog let's know about the high update operation about monodb.
1. Save
as for save(), whose function is to upda...
分类:
数据库 时间:
2014-09-25 03:05:48
阅读次数:
358
转自:Programming and TechnologyIf you get this warning when you connect to mongo shell in Mac OX X:** WARNING: soft rlimits too low. Number of files is ...
分类:
数据库 时间:
2014-09-25 01:25:07
阅读次数:
4507
我的mongodb里有10+数据库。现在需要重置这个环境,得到干净的没有数据的MongoDB。怎么快速安全的删除这些数据库数据呢?记得首先备份你的数据库mongodump -o bakfolder快速删除数据命令mongo dbname --eval "db.dropDatabase()"注意:有的...
分类:
数据库 时间:
2014-09-24 22:59:37
阅读次数:
250
1. 基本查询: 构造查询数据。 > db.test.findOne() { "_id" : ObjectId("4fd58ecbb9ac507e96276f1a"), "name" : "stephen", "age" : 35, "genda" : "male", "email" : "step...
分类:
数据库 时间:
2014-09-24 19:35:57
阅读次数:
388
MongoDB在本机安装部署好后1. 输入命令:show dbs,你会发现它内置有两个数据库,一个名为admin,一个名为local。local好像没啥用,如果哪位在使用过程中发现了这个local表的用途,希望能够留言提醒,那我们就专心来说说admin表2. 输入命令:use admin,你会发现该...
分类:
数据库 时间:
2014-09-24 18:58:27
阅读次数:
134
一、环境操作系统:#uname-r
2.6.32-358.el6.x86_64
#cat/etc/issue
CentOSrelease6.4(Final)
Kernel\ronan\m主:192.168.137.148从:192.168.137.154二、主从同步系统时间#ntpdatentp.api.bz&&hwclock-w--systohc三、安装#wget
#tarxfmongodb-linux-x86_64-enterprise..
分类:
数据库 时间:
2014-09-24 18:55:18
阅读次数:
296
下面我们一起来看看关于mongodb拷贝数据库copyDatabase()。 实现释放磁盘空间的方法,希望文章对各位同学会有所帮助。 db.copyDatabase("from","to","127.0.0.1:16161"); 将127.0.0.1上的from库。拷贝到to库。 这样做有一个额.....
分类:
数据库 时间:
2014-09-24 18:22:17
阅读次数:
242