Addition of way to add ids for recently deleted notes to search #9108
Unanswered
StephenArg
asked this question in
Q&A
Replies: 1 comment 4 replies
-
|
Hi,
If by incremental sync you mean pushing only the changes during a sync (e.g. delta), this is already implemented in Trilium. Whenever you make a change after activating sync, a special table called There is an overview of how sync works in https://docs.triliumnotes.org/developer-guide/concepts/sync. I believe @FliegendeWurst also got the sync to work on the Android version. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe feature
So currently I'm making a trilium client mobile application for ios. I noticed there's no way to do incremental syncing the way joplin does, so I implemented my own way by using the search feature to find the last notes that were updated since the last time my application updated (this way it avoids doing a full sync every time).
The problem with this is though, if another application deletes the note, there is currently no way for my application to know there were any deleted notes.
So I'm wondering if it's possible to add a parameter to the search request that includes ids of notes deleted since a specific datetime.
If the server currently doesn't store those deleted note ids, maybe it would be necessary that it did, at least for a certain amount of time, so it can inform other applications.
Thoughts? Is there already a better way? Thanks
Additional Information
No response
Beta Was this translation helpful? Give feedback.
All reactions