File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
src/main/java/com/google/firebase/firestore Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
- * [ feature] Add option to allow SDK create cache indexes automatically to improve query execution locally. [ ` db.getPersistentCacheIndexManager().enableIndexAutoCreation() ` ] ( //github.com/firebase/firebase-android-sdk/pull/4987 )
2
+ * [ feature] Add the option to allow the SDK to create cache indexes automatically to
3
+ improve query execution locally. [ ` db.getPersistentCacheIndexManager().enableIndexAutoCreation() ` ] ( //github.com/firebase/firebase-android-sdk/pull/4987 )
3
4
4
5
# 24.7.1
5
6
* [ fixed] Implement equals method on Filter class. [ #5210 ] ( //github.com/firebase/firebase-android-sdk/issues/5210 )
Original file line number Diff line number Diff line change @@ -356,8 +356,8 @@ public FirebaseApp getApp() {
356
356
* @return A task that resolves once all indices are successfully configured.
357
357
* @throws IllegalArgumentException if the JSON format is invalid
358
358
* @deprecated Instead of creating cache indexes manually, consider using {@link
359
- * PersistentCacheIndexManager#enableIndexAutoCreation()} to let SDK decide whether to create
360
- * cache indexes for queries running locally.
359
+ * PersistentCacheIndexManager#enableIndexAutoCreation()} to let the SDK decide whether to
360
+ * create cache indexes for queries running locally.
361
361
*/
362
362
@ Deprecated
363
363
@ PreviewApi
Original file line number Diff line number Diff line change @@ -52,8 +52,8 @@ public void disableIndexAutoCreation() {
52
52
}
53
53
54
54
/**
55
- * Removes all persistent cache indexes. Please note this function will also deletes indexes
56
- * generated by {@link FirebaseFirestore#setIndexConfiguration(String)}, which is deprecated.
55
+ * Removes all persistent cache indexes. Please note this function also deletes indexes generated
56
+ * by {@link FirebaseFirestore#setIndexConfiguration(String)}, which is deprecated.
57
57
*/
58
58
public void deleteAllIndexes () {
59
59
client .deleteAllFieldIndexes ();
You can’t perform that action at this time.
0 commit comments