I can't seem to find something in the documentations. Is it possible to set the cache size for fuse and/or sshfs and if so, how?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 1 down vote accepted

By default, sshfs caches things for 20 seconds, use -o cache_timeout=N to change the default cache timeout (in seconds) or -o cache=no for disabling the cache.

You can also control cache timeouts for directory listing etc with -o cache_stat_timeout=N, -o cache_dir_timout=N, and -o cache_link_timout=N.


also u can use system-wide cache

-o kernel_cache

link|improve this answer
shfsmount user@host /mnt/shfs -o cachesize=256 does not work with sshfs :) It's for shfs not for sshfs. – Jan Jul 25 '11 at 12:23
sorry) so u have use kernel cache and system-wide settings or use timeouts. – arheops Jul 25 '11 at 12:30
maybe u can use FS-Cache / CacheFS over sshfs to do cache &turn off sshfs cache.sorry, not tried that. see this article en.gentoo-wiki.com/wiki/CacheFS – arheops Jul 25 '11 at 12:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.