-
Notifications
You must be signed in to change notification settings - Fork 25
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
Delta updates #19
Comments
Used xdelta with alexkasko/delta-updater and the result of diff'ing two blocklists was around 76M for just
So, the generic delta / diff updates won't rescue us here. |
VcDiff wasn't any better either ~48MB for trie. It doesn't looks like off-the-shelf delta / diff algorithms are going to work for us. This requires some more thought and possibly a custom diff / delta algorithm, for which there's not enough planning or time, right now. May visit a similar approach in the future, if needed. |
Update more frequently (once every hour?), and see if delta updates are possible? Ship only bytes that have changed since the previous version. Like a git-patch.
https://archive.is/RiUEl
The text was updated successfully, but these errors were encountered: