You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
1.0 KiB

  1. # symlinkify
  2. * `symlinkify=true|false`
  3. * Defaults to `false`.
  4. Due to the levels of indirection introduced by mergerfs and the
  5. underlying technology FUSE there can be varying levels of performance
  6. degradation. This feature will turn non-directories which are not
  7. writable into symlinks to the original file found by the `readlink`
  8. policy after the mtime and ctime are older than the timeout.
  9. **WARNING:** The current implementation has a known issue in which if
  10. the file is open and being used when the file is converted to a
  11. symlink then the application which has that file open will receive an
  12. error when using it. This is unlikely to occur in practice but is
  13. something to keep in mind.
  14. **WARNING:** Some backup solutions, such as CrashPlan, do not backup
  15. the target of a symlink. If using this feature it will be necessary to
  16. point any backup software to the original filesystems or configure the
  17. software to follow symlinks if such an option is
  18. available. Alternatively, create two mounts. One for backup and one
  19. for general consumption.