在 ArangoDB 中,要批量刪除文檔,您可以使用 AQL(ArangoDB 查詢語(yǔ)言)編寫一個(gè)批量刪除的查詢。以下是一個(gè)示例:
from arango import ArangoClient
url = "http://localhost:8529"
username = "root"
password = ""
database_name = "myDatabase"
client = ArangoClient(url)
db = client.db(database_name, username, password)
myCollection
的集合中的所有文檔,可以使用以下查詢:query = """
FOR doc IN myCollection
DELETE doc
"""
result = db.aql.execute(query)
print("Deleted documents:", result.count)
這將刪除 myCollection
集合中的所有文檔。請(qǐng)注意,批量刪除大量文檔可能會(huì)對(duì)數(shù)據(jù)庫(kù)性能產(chǎn)生影響,因此建議在低峰時(shí)段執(zhí)行此操作,或者考慮使用事務(wù)來(lái)確保數(shù)據(jù)的一致性。