Skip to content

Commit

Permalink
disable warmup service (#7029)
Browse files Browse the repository at this point in the history
we've received this change from AOSP recently and then
discovered that on large projects it does 50-threads rescans
every minute and makes the IDE basically unusable.
  • Loading branch information
ujohnny authored Nov 20, 2024
1 parent 8eeda2d commit bdc69ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class FileSystemWarmUpService(val project: Project, val coroutineScope: Coroutin
private val logger = thisLogger()

companion object {
private val fileSystemWarmUpExperimentEnabled = BoolExperiment("file.system.warm.up.enabled", true)
private val fileSystemWarmUpExperimentEnabled = BoolExperiment("file.system.warm.up.enabled", false)
private val fileSystemWarmUpExperimentThreads = IntExperiment("file.system.warm.up.threads", 50)
}

Expand Down

0 comments on commit bdc69ce

Please sign in to comment.