Re: [PATCH] fuse: enable caching of symlinks

2018-10-10 Thread Miklos Szeredi
On Tue, Oct 2, 2018 at 11:33 PM, Dan Schatzberg wrote: > On 9/27/18, 9:59 AM, "Miklos Szeredi" wrote: > >> On Thu, Sep 27, 2018 at 3:52 PM, Dan Schatzberg wrote: >>> FUSE file reads are cached in the page cache, but symlink reads are >>> not. This patch enables FUSE READLINK operations to be ca

Re: [PATCH] fuse: enable caching of symlinks

2018-10-09 Thread Dan Schatzberg
On 9/27/18, 9:59 AM, "Miklos Szeredi" wrote: > On Thu, Sep 27, 2018 at 3:52 PM, Dan Schatzberg wrote: >> FUSE file reads are cached in the page cache, but symlink reads are >> not. This patch enables FUSE READLINK operations to be cached which >> can improve performance of some FUSE workloads.

Re: [PATCH] fuse: enable caching of symlinks

2018-10-02 Thread Dan Schatzberg
On 9/27/18, 9:59 AM, "Miklos Szeredi" wrote: > On Thu, Sep 27, 2018 at 3:52 PM, Dan Schatzberg wrote: >> FUSE file reads are cached in the page cache, but symlink reads are >> not. This patch enables FUSE READLINK operations to be cached which >> can improve performance of some FUSE workloads.

Re: [PATCH] fuse: enable caching of symlinks

2018-09-27 Thread Miklos Szeredi
On Thu, Sep 27, 2018 at 3:52 PM, Dan Schatzberg wrote: > FUSE file reads are cached in the page cache, but symlink reads are > not. This patch enables FUSE READLINK operations to be cached which > can improve performance of some FUSE workloads. > > In particular, I'm working on a FUSE filesystem f

[PATCH] fuse: enable caching of symlinks

2018-09-27 Thread Dan Schatzberg
FUSE file reads are cached in the page cache, but symlink reads are not. This patch enables FUSE READLINK operations to be cached which can improve performance of some FUSE workloads. In particular, I'm working on a FUSE filesystem for access to source code and discovered that about a 10% improvem