码迷,mamicode.com
首页 > 其他好文 > 详细

mongoose index

时间:2016-10-23 20:52:53      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:mon   dir   keyword   nim   div   性能   token   anim   als   

1.

当应用程序启动时,Mongoose会自动为模式中的每个定义的索引调用ensureIndex。 虽然很好用于开发,但建议在生产中禁用此行为,因为索引创建可能会导致显着的性能影响。 通过将模式的autoIndex选项设置为false来禁用该行为。

animalSchema.set(‘autoIndex‘, false);
// or
new Schema({..}, { autoIndex: false });
Mongoose文档广泛地建议在生产中禁用autoIndex。 一旦添加了索引,后续的ensureIndex调用将仅仅看到索引已经存在,然后返回。 因此,当你第一次创建索引时,它只对性能有影响,当时集合通常是空的,因此创建索引会很快。
 
 

mongoose index

标签:mon   dir   keyword   nim   div   性能   token   anim   als   

原文地址:http://www.cnblogs.com/jay--zhang/p/5990732.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!