-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Description
We have a few options for the diff depending on the methods we store content data.
-
Currently we can use modification_time/indexation_time parameters for the diff between two timestamps.
Pro:- Minimum changes.
- It enough to have one file that contains the index.
Then there is no fear that we can miss any changes, cause we have only one file that contains all the index.
Contra: Can be costly and take a time (need check)
-
Using incremental diff, i.e. we have a base and diffs for timestamps.
Implementations:- Base is a file and diffs are separate files
Pro: Simple enough.
Contra: What if we lose few such diff files? Is it a real scenario? - Having one file that contains base and diffs as a separate sections. It is similar to the way as, for example CVS, handles diffs.
Pro: All data concentrated in one file
Contra: Looks more complicated than first approach
- Base is a file and diffs are separate files
Metadata
Metadata
Assignees
Labels
No labels