Yannick Bollati

Results 11 comments of Yannick Bollati

Hello, Tasks (1.6.0) make my quite large vault (21k notes) almost unusable with lags of 5 to 10 seconds in the middle of edits. If I disable tasks then the...

Yes, Mac M1 All notes (but I think its much worse on notes with tasks queries) See-> https://www.loom.com/share/c92f3a4b6339451d9ca62b0241d21ff9

The video I sent you has no queries at all. Just a plain new note. And no other notes were opened simultaneously. Of course, the lags are much worse on...

Could the problem come from the dataview Javascript queries? I copied this query from Excalidraw Zsolt. ``` dataviewjs const name = dv.current().file.name; dv.taskList(dv.pages().file.tasks.where(t => !t.completed && t.text.includes(name))); ``` In his...

Yes, the lags seem to come when both TASKS and DATAVIEW are enabled together... Just TASKS = OK Just DATAVIEW = OK TASKS + DATAVIEW = lags

I wonder if all of you who have the lag issue use dataview JS queries too ? Could it be related ? ``` dataviewjs const name = dv.current().file.name; dv.taskList(dv.pages().file.tasks.where(t =>...

I just exchange messages with Zsolt, the author of Excalidraw about the issue he had with Dataview’js but it seems unrelated to our problem.

His problem was that if there is multiple exact same Dataview JS queries in a vault, sometimes it would not update properly. I definitely have the same Dataview JS query...

His solution was to add a random number as a comment in each JS queries to make them “different”.