mongodb
文章平均质量分 81
haozi3156666
这个作者很懒,什么都没留下…
展开
-
mongodb学习资料
MongoDB语法与现有关系型数据库SQL语法比较 MongoDB语法 MySql语法 db.test.find({'name':'foobar'}) select * from test where name='foobar' db.test.find()转载 2014-08-25 18:31:01 · 379 阅读 · 0 评论 -
MongoDB 聚合管道(二)(Aggregation Pipeline)
Mongo系列优秀文章链接点击打开链接 聚合管道的优化 1.$sort + $skip + $limit顺序优化 如果在执行管道聚合时,如果$sort、$skip、$limit依次出现的话,例如: { $sort: { age : -1 } }, { $skip: 10 }, { $limit: 5 }转载 2015-02-13 10:21:27 · 765 阅读 · 0 评论 -
MongoDB MapReduce学习笔记
原文链接:http://www.cnblogs.com/loogn/archive/2012/02/09/2344054.html MapReduce应该算是MongoDB操作中比较复杂的了,自己开始理解的时候还是动了动脑子的,所以记录在此! 命令语法:详细看 db.runCommand( { mapreduce : 字符串,集合名,转载 2015-03-07 13:54:16 · 467 阅读 · 0 评论 -
MongoDB 聚合管道(一)(Aggregation Pipeline)
转载自点击打开链接 一 管道的概念 管道是MongoDB2.2版本引入新的功能 ,它是数据聚合的一个新框架,其概念类似于数据处理的管道。管道的工作方式类似于UNIX-like的shell ps aux | grep mong* (下面的补充会详细介绍管道原理)。 每个文档通过一个由多个节点组成的管道,每个节点有自己特殊的功能转载 2015-02-13 10:11:35 · 1707 阅读 · 0 评论