我正在尝试在background=True
的元数据中设置Mongoengine
。
meta = {
'indexes': [
{'fields': ['-serviceName', '-user'],
'sparse': True,
'types': False,
'background': True},
]
}
collection.create_index(fields, background=background, **opts)
但它给了我这个错误:
TypeError: create_index() got multiple values for keyword argument 'background'
默认情况下,背景设置为False