summaryrefslogtreecommitdiffstats
path: root/system/unionfs-fuse/README
blob: 15eb5cc1bc0f3d584d545251048a1b6a8ff4c84f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
unionfs-fuse is a unionfs filesystem implementation using fuse.
It is meant to be way more flexible than the current in-kernel unionfs
solution.

Why choose this stuff?
 * The filesystem has to be mounted after the roots are mounted when
   using the standard module. With unionfs-fuse, you can mount the
   roots later and their contents will appear seamlesly.
 * You get caching (provided by the underlying FUSE page cache) which
   speeds things up a lot for free.
 * Advanced features like copy-on-write and more.

Why NOT choose it?
 * Compared to kernel-space solution we need lots of useless context
   switches which makes a kernel-only solution clear speed-winner.