MongoDB插件安装 MongoDB插件安装 File-->Settings-->Plugins-->Browse repositories-->Mongo-->Install MongoDB的配置 MongoDB的配置 查看MongoDB数据库内容 查看MongoDB数据库内容 链接MongoD ...
分类:
数据库 时间:
2017-09-27 00:41:37
阅读次数:
339
NoSQL Manager for MongoDB GUI tool Our MongoDB GUI tool unites friendly UI and Shell power.Intuitive interface and high performance of the desktop app ...
分类:
数据库 时间:
2017-09-26 23:36:44
阅读次数:
248
windows平台使用MongoDB shell 来连接 MongoDB 服务器并创建数据库 或者找到MongoDB的bin目录双击运行mongod.exe.待输出 I NETWORK [thread1] waiting for connections on port 27017。 打开一个连接(默 ...
分类:
数据库 时间:
2017-09-26 17:39:10
阅读次数:
219
下面详细说明影响mongodb的系统配置,尤其在生产环境上。 1、生产环境推荐的平台 Amazon Linux Debian 7.1 Red Hat / CentOS 6.2+ SLES 11+ Ubuntu LTS 12.04 Ubuntu LTS 14.04 Windows Server 201 ...
分类:
数据库 时间:
2017-09-24 22:15:02
阅读次数:
172
MongoDB配置 本地启动 c:\MongoDB\bin>mongod.exe --dbpath "C:\\MongoDB\data\db" --logpath "c:\\MongoDB\Data\log\Mongodb.log" C:\Users\jiangchunming>cd C:\Mong ...
分类:
数据库 时间:
2017-09-23 20:13:17
阅读次数:
207
MongoDB查询笔记 MongoDB配置说明 在C盘根目录新建一个MongoDB文件夹 >在MongoDB下面新建两个文件夹 Data文件夹 bin文件夹【直接拷贝】 data-文件夹下 新建两个文件夹db文件夹和log文件夹 c:\MongoDB\bin>mongod.exe --dbpath ...
分类:
数据库 时间:
2017-09-23 20:11:02
阅读次数:
164
1、模糊查询 通过模糊查询,查找相关数据: db.test.find({name:/joe/}) 查询name字段含有joe的数据 等同于db.test.find({name:{$regex:'joe'}}) db.test.find({name:/joe/i}) 加了i,那么就不会区分大小写,都会 ...
分类:
数据库 时间:
2017-09-22 17:52:19
阅读次数:
199
1.MongoDb 命令查询所有数据库列表 (http://blog.csdn.net/u010305706/article/details/48129131) 2.https://studygolang.com/articles/810 //json转换3.https://godoc.org/ / ...
分类:
其他好文 时间:
2017-09-21 17:49:28
阅读次数:
135
在SECONDARY查询出发现如下错误: 这是正常的,因为SECONDARY是不允许读写的,如果非要解决,方法如下: SECONDARY> rs.slaveOk(); ...
分类:
数据库 时间:
2017-09-21 16:41:47
阅读次数:
669
MongoDB,分组,聚合 使用聚合,db.集合名.aggregate… 而不是find 管道在Unix和Linux中一般用于将当前命令的输出结果作为下一个命令的参数。MongoDB的聚合管道将MongoDB文档在一个管道处理完毕后将结果传递给下一个管道处理。管道操作是可以重复的。 每一个操作符(集 ...
分类:
数据库 时间:
2017-09-21 14:46:51
阅读次数:
324