feat(LanguageServer): debounce onDidChangeWatchedFiles events#1626
Open
bartvandenende-wm wants to merge 3 commits intorokucommunity:masterfrom
Open
feat(LanguageServer): debounce onDidChangeWatchedFiles events#1626bartvandenende-wm wants to merge 3 commits intorokucommunity:masterfrom
bartvandenende-wm wants to merge 3 commits intorokucommunity:masterfrom
Conversation
When the client sends rapid successive file change notifications (e.g. during VCS operations, package installs, or bulk builds), the language server now accumulates changes in a buffer and flushes them after a configurable debounce window (default 300ms). This reduces redundant work by batching multiple notifications into a single processing pass instead of handling each one individually. Key changes: - Add pendingFileChanges buffer and configurable fileChangeDebounceDelay - Debounce timer resets on each new event, coalescing rapid changes - rebuildPathFilterer is called at most once per batch - Cleanup timer on dispose Co-authored-by: Cursor <cursoragent@cursor.com>
8af04ea to
c68d2f5
Compare
philippe-wm
reviewed
Feb 16, 2026
Co-authored-by: Cursor <cursoragent@cursor.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
In large multi-project workspaces, rapid file-system events (e.g. git operations, bulk saves) each trigger a full processing cycle fanned out to all projects, causing CPU spikes. This is part 1 of 3 targeted improvements to language server performance at scale (Part of #1625).
Summary
Debounces
onDidChangeWatchedFilesto collapse rapid successive events into a single batched processing cycle.PathFiltererat most once per batch when config files changeTest plan
handleFileChangescallrebuildPathFilterercalled at most once per batch