读书人

learing mongo~ ( part 一)

发布时间: 2012-11-19 10:18:51 作者: rapoo

learing mongo~ ( part 1)
download it..
unzip it..
create the db directory..
Run and connect to the server..





1、创建一个聚集集合(table)
db.createCollection(“collName”, {size: 20, capped: 5, max: 100});

2、得到指定名称的聚集集合(table)
db.getCollection("account");

3、得到当前db的所有聚集集合
db.getCollectionNames();

4、显示当前db所有聚集索引的状态
db.printCollectionStats();

读书人网 >其他数据库

热点推荐