mirror of
https://github.com/rclone/rclone.git
synced 2025-01-23 14:48:30 +08:00
424d8e3123
`--nfs-cache-type symlink` is similar to `--nfs-cache-type disk` in that it uses an on disk cache, but the cache entries are held as symlinks. Rclone will use the handle of the underlying file as the NFS handle which improves performance.
9 lines
175 B
Go
9 lines
175 B
Go
//go:build unix && !linux
|
|
|
|
package nfs
|
|
|
|
// Turn the diskHandler into a symlink cache
|
|
func (dh *diskHandler) makeSymlinkCache() error {
|
|
return ErrorSymlinkCacheNotSupported
|
|
}
|