VFS层允许rclone以类似本地文件系统的方式挂载云存储,而--vfs-cache-mode参数则决定了这种挂载方式下数据的缓存策略。 2. 阐述writes和full两种模式在vfs-cache-mode中的具体含义 writes模式:在这种模式下,写入操作会被缓存到本地磁盘,然后异步上传到WebDAV服务器。这可以显著提高写入性能,因为避免了每次
First I tried the cache backend's write mode, but as I explained that seems to delete the writes as soon as they are sent out from the cache, so that didn't do what I expected (and as a result I assumed it was implemented purely for error-safe uploads rather than cache retention)...