Rclone Mount limit file size in cache

Hi! Is it possible cache max size of file for example 15M than 100GB in rclone mount? I can't find any solution how do not exceed specific amount of MB.
I tried with: --vfs-cache-max-age >15mb 24h, but it doesn't help. My cache file crossed this size.

The main wais of controlling the VFS cache size are these

  --vfs-cache-max-size SizeSuffix          Max total size of objects in the cache. (default off)
  --vfs-cache-max-age duration             Max age of objects in the cache. (default 1h0m0s)

Note that if you are uploading a file, the whole file will be stored in the cache regardless.

Note also that the cache is only checked this often

  --vfs-cache-poll-interval duration       Interval to poll the cache for stale objects. (default 1m0s)

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.