刪除 Firestore 中的集合和子集合
Firestore 不提供整個集合或子集合刪除的直接方法。但是,有一個解決方法,涉及刪除集合或子集合中的各個文件。
建模資料結構
提供的資料結構適合給定的用例。無需重組資料庫即可刪除特定清單。
刪除集合或子集合的步驟
要刪除整個集合或子集合,請依照下列步驟操作:
批次(可選)
對於較大的集合,請考慮批次刪除文件以避免記憶體問題。
安全性和效能影響
由於潛在的負面安全和效能影響,Firestore 不鼓勵進行大型刪除操作。請謹慎執行這些操作,尤其是在不受信任的環境中。
Android 實作程式碼
<code class="java">private void deleteCollection(final CollectionReference collection, Executor executor) { Tasks.call(executor, () -> { int batchSize = 10; Query query = collection.orderBy(FieldPath.documentId()).limit(batchSize); List<DocumentSnapshot> deleted = deleteQueryBatch(query); while (deleted.size() >= batchSize) { DocumentSnapshot last = deleted.get(deleted.size() - 1); query = collection.orderBy(FieldPath.documentId()).startAfter(last.getId()).limit(batchSize); deleted = deleteQueryBatch(query); } return null; }); } @WorkerThread private List<DocumentSnapshot> deleteQueryBatch(final Query query) throws Exception { QuerySnapshot querySnapshot = Tasks.await(query.get()); WriteBatch batch = query.getFirestore().batch(); for (DocumentSnapshot snapshot : querySnapshot) { batch.delete(snapshot.getReference()); } Tasks.await(batch.commit()); return querySnapshot.getDocuments(); }</code>
以上是如何刪除 Firestore 中的整個集合和子集合?的詳細內容。更多資訊請關注PHP中文網其他相關文章!