VFS层允许rclone以类似本地文件系统的方式挂载云存储,而--vfs-cache-mode参数则决定了这种挂载方式下数据的缓存策略。 2. 阐述writes和full两种模式在vfs-cache-mode中的具体含义 writes模式:在这种模式下,写入操作会被缓存到本地磁盘,然后异步上传到WebDAV服务器。这可以显著提高写入性能,因为避免了每次
In the documentation it does say something to the effect that the VFS cache in writes mode removes the files after upload unlike full. If so that would explain it, but I really don't see why that is needed. Full sucks because it can't stream or do a partial access, and I don't ...