It seems that the Linux VFS cache does not work by default with a FUSE filesystem. For example, the "read" call seems to be systematically forwarded to the FUSE filesystem.

I work on a FUSE specific remote filesystem. I need a very agressive cache.

Do I need to implement my own page cache ? Or is it possible to activate the Linux VFS cache for this particular FUSE filesystem ? Or does someone know a good proxy/cache FUSE filesystem (or a kind of C library to do that without reinventing the wheel) ?

Bonus question :

If I have to implement my own page cache, I think to use a REDIS daemon to do the LRU stuff. I'm nearly sure that it can be a good option for caching metadatas. But for pages, I'm not sure that it will be better than a simple local directory (with VFS cache) or than /dev/shm. But I will loose LRU automatic cleaning. Does someone know a sort of /dev/shm with automatic LRU cleaning ?

Many thanks. Any thoughts are welcome.

link|improve this question
Some additionnal informations : the filesystem is read-only and the remote side is nearly immuable ; the remote side contains very big files that I can't copy to a local directory – Fabien Dec 30 '10 at 9:05
feedback

1 Answer

up vote 1 down vote accepted

I think VFS cache will not work on FUSE. There is caching solutions for FUSE or you can implement yours.

With a small search, I found fuse-cache, they claim that it is simple.

link|improve this answer
Thanks for your reply. But fuse-cache is not good for me because I have very big files on the remote side that I can't simply copy to a local directory. I need a cache at the page level because the cient side open only specific parts of these big files. – Fabien Dec 30 '10 at 9:03
Then it seems it is hard to find a generic solution. Try to implement yours. – Samet Atdag Dec 30 '10 at 9:07
feedback

Your Answer

 
or
required, but never shown

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