差分
このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン 前のリビジョン 次のリビジョン | 前のリビジョン | ||
translation:working:翻訳4 [2016-04-22 00:38] Decomo |
translation:working:翻訳4 [2016-04-22 12:43] (現在) Decomo |
||
---|---|---|---|
行 20: | 行 20: | ||
これらに対応する最も良い方法は、VFSレベルでの変更に興味を持ち検知するカーネル拡張を使うことです。 | これらに対応する最も良い方法は、VFSレベルでの変更に興味を持ち検知するカーネル拡張を使うことです。 | ||
+ | また、ファイルシステムイベントAPIは、特定のファイルの変更を検知するための設計にはなっていません。 | ||
+ | このような目的には、より相応しい'' | ||
- | The file system events | + | ファイルシステムイベントAPIは、巨大なファイルツリーの変更を受動的に監視するように設計されています。 |
+ | 本テクノロジーの最も明らかな用途はバックアップソフトウェアです。 | ||
+ | 実際に、ファイルシステムイベントAPIはAppleのバックアップテクノロジーの根幹を提供します。 | ||
- | The file system events | + | ファイルシステムイベントAPIの別の適した用途は、プロジェクトとディスクの随所に散らばっている可能性のある数十ないし数百の関連ファイルを含む緩い集合体としてデータを格納するアプリケーション—例えばDVD Studio Proのために、整合性の保証を提供することです。 |
+ | 他のアプリケーションによって関連ファイルの1つが変更された際、あなたのアプリケーションはプロジェクトへの変更の取り込み方法選択のために、それを知らなければなりません。 | ||
- | Another good use for the file system events API is providing consistency guarantees for applications that store data as a loose collection containing a project and dozens or hundreds of related files potentially scattered across the disk—DVD Studio Pro, for example. When one of the related files is modified by another application, | + | もちろん、'' |
- | Of course, this use can also potentially be satisfied through the use of kqueues, but file system events provide the convenience of being able to see changes that occurred even while your application was not running, which can make consistency checking easier when your application opens a project initially. |