gnu: system: vm: Use loose cache for 9p file system.

This improves the performance of the shared store for operations involving
lots of files, e.g. searching through the store.

* gnu/system/vm.scm (mapping->file-system): Add cache=loose to options.
This commit is contained in:
Christopher Baines 2017-12-09 08:36:52 +00:00
parent 56d924a59b
commit e0d96774dd
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 1 additions and 1 deletions

View File

@ -554,7 +554,7 @@ of the GNU system as described by OS."
(device (file-system->mount-tag source))
(type "9p")
(flags (if writable? '() '(read-only)))
(options (string-append "trans=virtio"))
(options "trans=virtio,cache=loose")
(check? #f)
(create-mount-point? #t)))))