We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc61060 commit 0e2d44dCopy full SHA for 0e2d44d
packages/firestore/src/local/index_manager.ts
@@ -57,8 +57,11 @@ export interface IndexManager {
57
/**
58
* Adds a field path index.
59
*
60
- * Values for this index are persisted asynchronously. The index will only be
61
- * used for query execution once values are persisted.
+ * Values for this index are persisted via the index backfill, which runs
+ * asynchronously in the background. Once the first values are written,
62
+ * an index can be used to serve partial results for any matching queries.
63
+ * Any unindexed portion of the database will continue to be served via
64
+ * collection scons.
65
*/
66
addFieldIndex(
67
transaction: PersistenceTransaction,
0 commit comments