File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
- [ added] Expose client side indexing feature with ` FIRFirestore.setIndexConfigurationFromJSON ` and
3
3
` FIRFirestore.setIndexConfigurationFromStream ` (#10090 ).
4
+ - [ fixed] Fixed high CPU usage whenever Firestore was in use (#10168 ).
4
5
5
6
# 9.5.0
6
7
- [ fixed] Fixed an intermittent crash if ` ListenerRegistration::Remove() ` was
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ static const auto kRegularGCDelay = std::chrono::minutes(5);
113
113
/* * How long we wait to try running index backfill after SDK initialization. */
114
114
static const auto kInitialBackfillDelay = std::chrono::milliseconds(15 );
115
115
/* * Minimum amount of time between backfill checks, after the first one. */
116
- static const auto kRegularBackfillDelay = std::chrono::milliseconds(1 );
116
+ static const auto kRegularBackfillDelay = std::chrono::milliseconds(1000 );
117
117
118
118
} // namespace
119
119
You can’t perform that action at this time.
0 commit comments