Filestash on demand sync
Familiar with Dropbox? FDrive is that same desktop experience, with one twist: we do not lock you in a particular storage technology, and your data stays under your control. It looks like this:
Highlights:
- on demand sync
- work offline, sync back when you go back online (even on linux)
- works on your existing storage: SFTP, FTP, S3, IPFS, SMB, NFS, ….
- delta sync: we don’t waste your bandwidth uploading or downloading large files when only a small portion changed
- open source
Nerdy stuff:
- based on the ports and adapters pattern
- no electron, 100% native
- rsync algorithm for delta sync
- core sync engine is rust and shared on all supported platforms
- no cowboy mutations: file mutations only land if the server still holds the version you last saw
- write-ahead journal: you can kill -9 it mid-upload without losing or corrupting anything
- coalesced writes: writing the same file 10k time per second will not hammer your server