How to cache 500m continuously in memory when playing video using rclone mount

What is the problem you are having with rclone?

cant cache 500m continuously in memory when playing video using rclone mount

Run the command 'rclone version' and share the full output of the command.

rclone v1.63.1
-操作系统/版本:Microsoft Windows 11 Pro 22H2(64位)
-os/kernel:10.0.222621.2134(x86_64)
-os/type:windows
-os/arch:aamd64
-go/版本:go1.20.6
-转到/链接:静态
-go/tags:cmount

Which cloud storage system are you using? (eg Google Drive)

the webdav that alist provide

The command you were trying to run (eg rclone copy /tmp remote:tmp)

Paste command here

rclone mount q:/ w: --network-mode --dir-cache-time 100h --vfs-cache-mode off --buffer-size 32m --vfs-read-ahead 500m --poll-interval 10s

The rclone config contents with secrets removed.

Paste config here

A log from the command with the -vv flag

Paste  log here

If you want to cache files for read replace:

--vfs-cache-mode off
with
--vfs-cache-mode full

Here you can read details about all VFS options.

If your goal is specifically 'memory', the buffer-size flag affects what stays in memory, but that memory is dumped when a file is closed.

Your current setting only keeps 32m in memory.

That's about caching to disk though not memory.

thank you very much,i know

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