千家信息网

Python_mongodb计算增加删除速度

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,#! /user/bin/env pythonfrom pymongo import Connectiondb = Connection().foocollection = db.barfor i i
千家信息网最后更新 2025年01月20日Python_mongodb计算增加删除速度
  1. #! /user/bin/env python
  2. from pymongo import Connection
  3. db = Connection().foo
  4. collection = db.bar
  5. for i in range(10000000):
  6. collection.insert({"foo" : "bar", "baz" : i, "z" : 10 - i})
  7. import time
  8. start = time.time()
  9. collection.remove()
  10. collection.find_one()
  11. total = time.time() - start
  12. print "%d seconds" % total
0