Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Improve performance when multiple files are edited quickly #3394

Merged
merged 2 commits into from
Mar 25, 2025

Conversation

claremacrae
Copy link
Collaborator

@claremacrae claremacrae commented Mar 25, 2025

Types of changes

Done by pairing with @ilandikov.

Changes visible to users:

Description

The change

This adds a small delay between successive redraws of Tasks search results.

This speeds up situations where more than one file containing tests is modified within that 0.1 second window, which can happen with things like:

  • Changes being synced in from another device
  • Bulk edits being made in the vault, for example:
    • Renaming a property
    • Doing multi-file find-and-replace in a text editor
    • Running the Lint plugin on a folder or folders
    • A folder being renamed

Previously, Tasks would redraw all open queries on every individual file edit, for files that contain lines it considers to be tasks.

This also eliminates some double redraws that I have not previously been able to track down.

Example improvement

Time taken to delete 76 files with tasks in, in the test vault, on a very fast Mac.

Code Time (in seconds)
Before this PR 8.6
After this PR 0.5

What is not (yet) changed

Because the 0.1 secs delay is small compared to the Obsidian 2-second auto-save interval, this probably will not have much benefit to typing speed, whilst the Tasks plugin is rendering many searches.

That will be improved in a future PR.

Motivation and Context

  • Save user time
  • Save device battery power

This is the first of a series of improvements to Tasks performance.

How has this been tested?

Thorough exploratory testing in the Tasks test vault.

Screenshots (if appropriate)

image

Screenshot showing the size of debug-log files from Tasks, when deleting 64 files containing tasks, with 5 queries open.

The size of the output reflects the number of redraws done.

Code Log Size (in KB)
Before this PR 482
After this PR 92

Checklist

  • My code follows the code style of this project and passes yarn run lint.
  • My change has adequate Unit Test coverage.

Terms

Basically, many Tasks searches can take more than 0.1 second to render.
But Obsidian and Tasks can parse many files during that 0.1 second span.

1. This speeds up start-up time in cases where there were Tasks queries open
   at start-up Obsidian, preventing double-redraws.
2. It eliminates lots of wasted redraws in open queries, when Obsidian
   is re-reading files that were edited externally (such as via Sync)
   and where bulk edits are made to files in the vault.

Relates to issue #3283
@claremacrae claremacrae added scope: performance issues Issues with speed or responsiveness scope: rendering of tasks How the plugin displays tasks, including search results (except CSS issues) labels Mar 25, 2025
@claremacrae claremacrae changed the title fix: Add a 0.1 second delay between redrawing Tasks search results. fix: Improve performance when multiple files are edited quickly Mar 25, 2025
@claremacrae claremacrae merged commit ea3207e into main Mar 25, 2025
4 checks passed
@claremacrae claremacrae deleted the fix-debounce-result-redraws branch March 25, 2025 14:53
@claremacrae
Copy link
Collaborator Author

I've been through all the relevant steps in the Smoke tests, since my notes from before said that my first attempt with this code broke refreshing of results in Live Preview.

I've done all the tests except these ones:

image

I expect that the problem was fixed by one or both of these - likely the second one:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scope: performance issues Issues with speed or responsiveness scope: rendering of tasks How the plugin displays tasks, including search results (except CSS issues)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant