|
|
|
|
|
by kevincox
3427 days ago
|
|
No. The problem isn't only the storage or fetching of the files (this is the easy bit :) ), it's the operations that detect changes in the working tree. If you have a large tree scanning it becomes slow. Using a vfs allows you to track which files have changed so that these operations no longer need to scan. Now they are O(changed files) which is generally small. Now IPFS has a vfs, but it is just a simple read/write interface. This vfs needs slightly more logic to do things like change the base revision and track changes. |
|
For tracking changes (i.e. mutable data) you can use IPNS and create a signed commit history. This will be built on IPFS eventually so it's only a matter of time.