mongodb批量操作, bulk_write,

Posted 北风之神0509

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mongodb批量操作, bulk_write,相关的知识,希望对你有一定的参考价值。

需要批量操作时候,节省网络连接交互次数,可以使用 bulk_write。
设置ordered=False,因为批量操作中没有互相依赖关系,如果有氰胺后的互相依赖,需要设置为True。


bed_type_match_failed_list = [{‘_id‘: b, ‘update_time‘: datetime.datetime.now()} for b in self.bed_type_match_failed_set]
to_be_request = [UpdateOne({‘_id‘:b[‘_id‘]},{‘$set‘:b},upsert=True) for b in bed_type_match_failed_list]
self.col.bulk_write(to_be_request,ordered=False)
self.bed_type_match_failed_set.clear()

以上是关于mongodb批量操作, bulk_write,的主要内容,如果未能解决你的问题,请参考以下文章

MongoDB批量操作隐含的特性

MongoDB批量操作隐含的特性

MongoDB怎样批量执行命令

MongoDB 批量写操作

Mongoose (mongodb) 批量插入、删除、更新和无操作

MongoDB中批量操作的隔离