From 38919add6114b1f8c08156f3cefd361a9c7e7ef6 Mon Sep 17 00:00:00 2001 From: Tanachat Nilanon Date: Wed, 14 Aug 2019 23:57:56 -0700 Subject: [PATCH] Update README.md Fixed typo: changed ' to ` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3fc29d55..c9e5c42f 100644 --- a/README.md +++ b/README.md @@ -517,7 +517,7 @@ tl;dr: * cache.files=partial: Enables page caching. Underlying files cached, mergerfs files cached while open. * cache.files=full: Enables page caching. Underlying files cached, mergerfs files cached across opens. * cache.files=auto-full: Enables page caching. Underlying files cached, mergerfs files cached across opens if mtime and size are unchanged since previous open. -* cache.files=libfuse: follow traditional libfuse `direct_io`, 'kernel_cache`, and `auto_cache` arguments. +* cache.files=libfuse: follow traditional libfuse `direct_io`, `kernel_cache`, and `auto_cache` arguments. FUSE, which mergerfs uses, offers a number of page caching modes. mergerfs tries to simplify their use via the `cache.files` option. It can and should replace usage of `direct_io`, `kernel_cache`, and `auto_cache`.