OS X 中的低优先级 I/O

发布于 2024-09-14 06:28:16 字数 407 浏览 4 评论 0原文

launchd 可以选择 以低优先级 I/O 运行进程。它到底是如何运作的? (低到什么程度,它会影响所有操作吗?)

是否有 API 可以在未通过 launchd 启动的应用程序中启用低优先级 I/O?

我需要在后台应用程序中扫描监视的(FSEvents)目录,并且我希望这尽可能温和。

或者,如何检查系统/磁盘是否正忙于执行 I/O?

launchd has option to run process with low priority I/O. How does it work exactly? (how low is low, does it affect all operations?)

Is there an API that enables low priority I/O in applications not launched via launchd?

I need to scan watched (FSEvents) directories in background application, and I'd like this to be as gentle as possible.

Alternatively, how can I check if system/disk is busy doing I/O?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别理我 2024-09-21 06:28:16

Launchd 使用 setiopolicy_np (手册页),如源代码中所示此处

这个苹果文档足够温和,所以你不必在意。它仅告诉您监视目录中的某些内容已更改这一事实。

如果您确实利用 /dev/fsevents 并获取原始数据,则需要非常小心,不要压垮系统。

Launchd uses setiopolicy_np (man page), as can be seen in the source code here.

The standard FSEvents APIs explained in this Apple doc is gentle enough, so you don't have to care. It only tells you the fact that something in a watched directory is changed.

If you really tap into /dev/fsevents and get raw data, you need to be very careful not to overwhelm the system.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文