我想将HumbleDB(https://humbledb.readthedocs.io/en/latest/)与Django结合使用。在我的Django视图中,我得到了类似的东西:
from humbledb import Mongo, Document
class HumbleDoc(Document):
config_database = 'humble'
config_collection = 'examples'
description = 'd'
value = 'v'
def index(request):
with Mongo:
HumbleDoc.insert(doc)
但是这会导致每个新的Web请求都有一个新的MongoDB连接。如何激活连接池,以便实际重新使用连接,而不是在每个请求上再次生成连接?
提前感谢您的帮助!