分享哈我测试MongoDB数据库的简单代码 源代码下载地址:http://www.zuidaima.com/share/1550463424236544.htm...
分类:
数据库 时间:
2014-09-29 12:16:00
阅读次数:
219
安装了mongodb,添加了管理员root和test数据库的用户rex,并且开启的用户认证。
按照说明文档连接mongodb数据库:$mongo = new Mongo("mongodb://rex:123456@localhost");
结果开启firebug之后发现报错:"NetworkError: 500 Internal Server Error - http://192.168...
分类:
数据库 时间:
2014-09-29 10:25:57
阅读次数:
298
1,获取当前数据库下的所有集合,返回的是一个列表(搞python的应该熟悉python的4个核心数据库类型及其特性dict{},list[],数组(),集合(目的仅仅是去重))2,显示当前db下的所有collections stats3,数据库db,集合collection stats4,当前连接数...
分类:
数据库 时间:
2014-09-29 01:53:37
阅读次数:
446
http://blog.csdn.net/smallfish1983/article/details/38078019照着上面那哥们写的,初学,不要吐血,基本功能实现了。root@ubuntu12:~/ansible/tornado#tree.├──templates│├──index.html│└──result.html└──test.pyroot@ubuntu12:~/ansible/tornado#cattest.py#c..
分类:
数据库 时间:
2014-09-28 18:53:17
阅读次数:
368
http://rfyiamcool.blog.51cto.com/1030776/1440624http://rfyiamcool.blog.51cto.com/1030776/1422263root@ubuntu12:~/ansible#vimongo.pyimportsysimportpymongoimportansible.runnerdeflog(res):conn=pymongo.Connection(host="localhost",port=27017)db=conn["ansible"]ift..
分类:
数据库 时间:
2014-09-28 18:51:37
阅读次数:
235
http://blog.csdn.net/stationxp/article/details/26077439计划:装一个虚机,ubuntu吧,14.04 Trusty Tahr。安装MongoDB网络资源:http://mirrors.aliyun.com/ubuntu-releases/14.0...
分类:
数据库 时间:
2014-09-28 17:20:53
阅读次数:
525
TokuMX v1.5.0的唯一索引(unique index)不支持dropDups选项,如果源数据包含相同目标key的文档,将无法建立唯一索引。问题场景:从MongoDB到TokuMX的数据实时同步,MongoDB使用唯一索引并且设置dropDups选项,因为数据量较大同时客户端不断写数据,Mo...
分类:
其他好文 时间:
2014-09-28 17:00:13
阅读次数:
161
http://special.csdn.net/mongodb/http://www.csdn.net/article/2011-03-21/294271http://blog.itpub.net/26355921/viewspace-1248096/
分类:
数据库 时间:
2014-09-28 14:42:52
阅读次数:
129
1、创建连接用户
> mongo ip:port
>
use test
> db.addUser("root",
"123456")
>
db.auth("root","123456") (登陆验证)
2、java连接mongodb的驱动,下载地址:https://github.com/mongodb/mongo-java-driver/downloads。
3、测...
分类:
数据库 时间:
2014-09-28 14:27:22
阅读次数:
196
查询集合c中y的值为null或者不存在>db.c.find( { “y” : null } )查询集合c中y的值为null,(仅返回y的值为null的数据,不会返回不存在的)>db.c.find( { “y” : { $type : 10 } } )还有一种写法如下>db.c.find({“y”:{...
分类:
数据库 时间:
2014-09-28 12:49:02
阅读次数:
192