赞
踩
1、BSON文档大小,最大限制为16MB,这种限制是为了确保单个文档不会使用过多的RAM,或者在迁移期间不会占用过多的带宽。为了保存大于该限制的文档,mongodb提供了GridFS
当插入的文档大于16MB时将得到如下的错误信息(java客户端):com.mongodb.MongoInternalException: DBObject of size 30836631 is over Max BSON size 16777216
2、文档的最大嵌套数为 100
MainMongoDao documentMongoDao = new MainMongoDao(DocumentContent.class);
Integer _id = Integer.valueOf(documentMongoDao.getNextId());
while(documentMongoDao.findById(_id) != null){
_id = Integer.valueOf(documentMongoDao.getNextId());
}
documentContent.setId(_id);
documentMongoDao.saveOrUpdate(documentContent);
新增必须设置id,为了防止后续新增数据覆盖mongo数据,所以还需确保mongo中不存在新增设置的id
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。