刪除 Firestore 中的集合和子集合
Firestore 提供了包含集合和文件的分層資料結構。集合可以容納子集合,從而創建多層嵌套。刪除特定清單時,由於無法在保留其子集合的同時刪除清單 ID,因此出現了問題。
無需重組的解決方案:
要繞過此問題,可以使用以下步驟:
此方法可確保完全刪除清單和關聯數據,而不會影響資料庫的結構。
大型集合的注意事項:
處理大型集合時,建議小批量刪除文檔,以減輕潛在的內存不足錯誤。刪除過程應繼續,直到集合或子集合中的所有文件均已刪除。
有關刪除操作的注意事項:
雖然刪除操作在技術上是可行的,但Firebase由於潛在的安全和性能影響,團隊強烈建議不要使用它。僅建議刪除小型集合,尤其是在受信任的伺服器環境中執行時。
Android 實作:
對於 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中文網其他相關文章!