Touch paths.

This commit is contained in:
2025-02-08 15:07:59 -08:00
parent ab305f7acf
commit e13df96b68
4 changed files with 20 additions and 10 deletions

View File

@@ -133,4 +133,11 @@ final class PathManager {
}
refreshFilesystemWatchers()
}
// Touch paths to load them into CPUs cache.
public func touchPaths() {
for path in paths {
_ = path
}
}
}