mongodb
文章平均质量分 70
kingeasternsun
向linus致敬!
展开
-
MongoDB:The Definitive Guide 2nd笔记(二)
Grouping operatorssumavgmax min first lastaddToSetpushGrouping behavior原创 2016-09-10 08:50:41 · 586 阅读 · 0 评论 -
MongoDB:The Definitive Guide 2nd笔记之特殊Indexes
TTL IndexesFull-Text IndexesGeospatial Indexing空间检索的几种方式2D IndexesTTL Indexes通过指定expireAfterSecs选项来创建。原创 2016-09-08 19:01:20 · 692 阅读 · 0 评论 -
MongoDB in Action Second Edition笔记之基于Index查询优化
查看查询过程的方法 查看所有的使用index的查询方案 强制使用某种index的方法 index cache原创 2016-09-29 10:45:41 · 497 阅读 · 0 评论 -
MongoDB in Action Second Edition笔记之Index
Compound Index例子Core indexing conceptsSINGLE-KEY INDEXESCOMPOUND-KEY INDEXESINDEX EFFICIENCYB-treesIndex typesUNIQUE INDEXESSPARSE INDEXESMULTIKEY INDEXESHASHED INDEXESGEOSPATIAL INDEXESInd原创 2016-09-28 16:57:25 · 741 阅读 · 0 评论 -
MongoDB:The Definitive Guide 2nd笔记之查看数据库大小
计算大小 Documents Collections Databases原创 2016-09-25 09:19:05 · 649 阅读 · 0 评论 -
MongoDB学习路线
参考书籍从零开始学习mongodb数据库之前只了解过mysql的基本知识,对于mongodb要从零开始学习,给自己制定的学习路线如下原创 2016-09-08 14:35:56 · 1242 阅读 · 0 评论 -
MongoDB:The Definitive Guide 2nd笔记之Seeing the Current Operations
查看当前操作过滤查看db.currentOp({"ns" : "prod.users"})杀死操作,不是所有的操作都可以被杀死原创 2016-09-25 08:40:13 · 517 阅读 · 0 评论 -
MongoDB:The Definitive Guide 2nd笔记之system.profile
使用系统监控打开监控参看监控信息查看耗时的操作关闭监控查看当前监控等级使用系统监控打开监控> db.setProfilingLevel(2)等级2意味着监控所有,数据库接受的所有的读写操作都会记录在system.profile中。 开启监控对性能影响很大,因为所以的写操作都增加了额外的写入时间,所有的读操作都需要获取写锁(增加了一个写操作到system.profile)。原创 2016-09-25 08:56:54 · 1006 阅读 · 0 评论 -
MongoDB:The Definitive Guide 2nd笔记(三)
Setting Up a Replica SetMajorityHow Elections WorkMember Configuration OptionsArbitesPriorityHidden原创 2016-09-12 16:17:16 · 766 阅读 · 0 评论 -
MongoDB in Action Second Edition笔记之Text Index
创建Text index创建Text index并指定权重为域的成员创建Text indexText index 大小手动指定Text index名称全域Text indexText index查询基本搜索or搜索限定在特定document中搜索指定特定词必须包含在结果document中精确匹配排除包含词汇或语句的document限定条件Text search score原创 2016-09-30 16:21:17 · 920 阅读 · 0 评论