rtm.tasks.getList has a neat little parameter it takes called last_sync. This ensures you only get new tasks, modified tasks, and deleted tasks since the last time you pulled data.
This is quite neat and means we'll be able to operate incrementally on todos. It means we won't have to do manual comparisons for RTM-side updates; RTM will simply tell us what changed! Then we just funnel it in on our side.
rtm.tasks.getList
has a neat little parameter it takes calledlast_sync
. This ensures you only get new tasks, modified tasks, and deleted tasks since the last time you pulled data.This is quite neat and means we'll be able to operate incrementally on todos. It means we won't have to do manual comparisons for RTM-side updates; RTM will simply tell us what changed! Then we just funnel it in on our side.
So this is something to do soon.