peter-x / synclist

GNU General Public License v2.0
6 stars 0 forks source link

Storage improvement #6

Open peter-x opened 10 years ago

peter-x commented 10 years ago

Problem description: In order to read in a new storage, every file (or at least the newest version) needs to be read from a possibly remote server. In most cases, this results in one request per file, which can greatly decrease performance.

Possible solution: Add something like the pack-files from git: At some stage, concatenate the contents of all files into a single file and remove the individual files afterwards.

peter-x commented 10 years ago

This also relates to issue "improve initial sync".