मेरे पास इस तरह की कुछ सेवाएं हैं जिन्हें मैं फ़ाइलों को संशोधित करने के तुरंत बाद चलाना चाहता हूं।
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN
http://www.apple.com/DTDs/PropertyList-1.0.dtd>
<plist version="1.0">
<dict>
<key>Label</key>
<string>test</string>
<key>ProgramArguments</key>
<array>
<string>say</string>
<string>a</string>
</array>
<key>WatchPaths</key>
<array>
<string>/Users/username/Desktop/</string>
</array>
</dict>
</plist>
यहां तक कि अगर थ्रोटलइंटरवल को 1 या 0 पर सेट किया गया था, तो वे केवल प्रत्येक 10 सेकंड में चलाया जाता है।
9/9/12 4:57:05.457 PM com.apple.launchd.peruser.501[138]: (test) Throttling respawn: Will start in 7 seconds
9/9/12 4:57:09.541 PM com.apple.launchd.peruser.501[138]: (test) Throttling respawn: Will start in 3 seconds
man launchd.plist
केवल यह कहता है कि प्रोग्राम्स डिफ़ॉल्ट रूप से प्रत्येक 10 सेकंड से अधिक नहीं चलते हैं, लेकिन यह उल्लेख नहीं करता है कि थ्रॉटलइंटरवल इसके नीचे सेट नहीं किया जा सकता है।
ThrottleInterval <integer>
This key lets one override the default throttling policy imposed on jobs by launchd.
The value is in seconds, and by default, jobs will not be spawned more than once
every 10 seconds. The principle behind this is that jobs should linger around just
in case they are needed again in the near future. This not only reduces the latency
of responses, but it encourages developers to amortize the cost of program invoca-
tion.
आप कार्यक्रम या स्क्रिप्ट को 10 सेकंड के लिए चालू रख सकते हैं और हर दूसरे बदलाव के लिए देख सकते हैं:
#!/bin/bash
start=$(date +%s)
prev=
until (( $(date +%s) >= $start + 10 )); do
new=$(stat -f %m ~/Desktop/)
[[ $prev != $new ]] && say a
prev=$new
sleep 1
done
या रूबी में ही:
#!/usr/bin/env ruby
start = Time.now
prev = nil
until Time.now >= start + 10
current = File.mtime("#{ENV['HOME']}/Desktop/")
`say a` if current != prev
prev = current
sleep 1
end
लेकिन क्या समय सीमा को बाईपास या कम करने का कोई तरीका है? यह फ़ोल्डर क्रियाओं पर भी लागू होता है।