随笔分类 -  mongodb

摘要:var MongoClient = require('mongodb').MongoClient; var DB_CONN_STR = "mongodb://localhost:27017/datas"; //datas是数据库名字app.post('/fenlei', function (req, 阅读全文
posted @ 2017-07-17 16:54 GoTime 阅读(467) 评论(0) 推荐(0)
摘要:db.createCollection(name, {capped: true, autoIndexId: true, size: 1000, max :100} ) name:集合的名字 capped:true 是否启用集合限制 autoIndex:true(默认是true) 是否使用_id作为索 阅读全文
posted @ 2017-07-15 17:57 GoTime 阅读(347) 评论(0) 推荐(0)