Rclone + cache + stored chunks

I did a bit more testing and it seems like if I run the same file a few times through mediainfo or ffprobe or something along those lines, it always seems to read the file from my drive and doesn’t seem to be using the locally stored chunks.

I created another cache / crypt mount for testing purposes.

Pastebin of the mediainfo:

https://pastebin.com/j7TDY4Ma

ffprobe:

https://pastebin.com/Vu4Z5GpN

My mount:

/usr/bin/rclone mount gmediatest: /test \
>    --allow-other \
>    --dir-cache-time 160h \
>    --cache-total-chunk-size 5G \
>    --cache-chunk-path /dev/shm \
>    --cache-chunk-size 10M \
>    --cache-tmp-upload-path /data/rclone_test \
>    --cache-tmp-wait-time 60m \
>    --cache-info-age 168h \
>    --cache-workers 5 \
>    --buffer-size 0M \
>    --log-file /home/felix/logs/rclone-test.log \
>    --log-level DEBUG \
>    --umask 002

I’d expect it to hit the local chunks and just respond back instantly to the request as that’s the behavior with plexdrive since the chunks are already there.