我正在使用python-arango作为 ArangoDB 的驱动程序,似乎没有UPSERT
接口。
我打算用 python-arango标记它,但我没有足够的代表来创建新的 tags。
我正在使用如下所示的功能进行管理,但我想知道是否有更好的方法来做到这一点?
def upsert_document(collection, document, get_existing=False):
"""Upserts given document to a collection. Assumes the _key field is already set in the document dictionary."""
try:
# Add insert_time to document
document.update(insert_time=datetime.now().timestamp())
id_rev_key = collection.insert(document)
return document if get_existing else id_rev_key
except db_exception.DocumentInsertError as e:
if e.error_code == 1210:
# Key already exists in collection
id_rev_key = collection.update(document)
return collection.get(document.get('_key')) if get_existing else id_rev_key
logging.error('Could not save document {}/{}'.format(collection.name, document.get('_key')))
请注意,在我的情况下,我确保所有文档_key
在插入之前和之前都有一个值,因此我可以假设这成立。如果其他人想使用它,请相应地修改。
编辑:删除了_id
字段的使用,因为这对问题不是必需的。