删除 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中文网其他相关文章!