Questions tagged [zsync]

zsync is a file transfer program. It allows you to download a file from a remote server, where you have a copy of an older version of the file on your computer already. zsync downloads only the new parts of the file.

zsync is a file transfer program. It allows you to download a file from a remote server, where you have a copy of an older version of the file on your computer already. zsync downloads only the new parts of the file.

It uses the same algorithm as rsync. However, where rsync is designed for synchronising data from one computer to another within an organisation, zsync is designed for file distribution, with one file on a server to be distributed to thousands of downloaders.

zsync requires no special server software — just a web server to host the files — and imposes no extra load on the server, making it ideal for large scale file distribution.

zsync fills a gap in the technology available for large-scale file distribution. Three key points explain why zsync provides a genuinely new technique for file distribution:

Client-side rsync — zsync uses the rsync algorithm, but runs it on the client side, thus avoiding the high server load associated with rsync.

Rsync over HTTP — zsync provides transfers that are nearly as efficient as rsync -z or cvsup, without the need to run a special server application. All that is needed is an HTTP/1.1-compliant web server. So it works through firewalls and on shared hosting accounts, and gives less security worries.

Handling for compressed files — rsync is ineffective on compressed files, unless they are compressed with a patched version of gzip. zsync has special handling for gzipped files, which enables update transfers of files which are distributed in compressed form.

The special handling of compressed files is, as far as I know, entirely new and unique to zsync. The combination of client-side rsync and HTTP is also unique to zsync, to the best of my knowledge.

Source: Zsync

5 questions
5
votes
4 answers

Sync clients' files with server - Electron/node.js

My goal is to make an Electron application, which synchronizes clients' folder with server. To explain it more clearly: If client doesn't have the files present on the host server, the application downloads all of the files from server to…
3
votes
0 answers

Node.js Zsync ( or other Network Folder Replication ) library

The problem: Binary data exists on a server, and is regularly updated. It should be replicated to clients in a bandwidth efficient way and should operate over HTTP(S). An ideal solution would use delta patching and also delete files that were no…
1
vote
1 answer

ZSync tutorial - Syncing CoreData data between devices

I am interested in syncing CoreData data amongst several apps running on iPhone, iPad and MacOSX. I found ZSync project from Mr Zarra but did not find any related tutorial. I contacted Mr Zarra who is always working on improving ZSync (thanks for…
user440727
  • 13
  • 4
0
votes
1 answer

How to debug 'no entities specified' when working with ZSync and CoreData Syncing

I'm trying to get ZSync to work between a desktop and iPhone app. I've got my schemas set up and all info matches between my MOM and my schema so I should be good to go. When I initiate my sync, however, I get this error. |Miscellaneous|Error|…
monotreme
  • 582
  • 1
  • 6
  • 20
-1
votes
2 answers

Need to Sync iPhone App between iPhone/iPad/iPod Touch etc. How? Cloud? Zsync? Dropbox?

I have received requests for my iPhone app, to be able to sync it between a person's iPhone and iPad, or between two iPhones in the same family, etc. I have been searching online now for some time, and this still is not clear to me. I am a pretty…
SAHM
  • 4,078
  • 7
  • 41
  • 77