(2012-05-10 21:59)tinybutstrong Wrote: Quick question, what is the difference between method syscall and polling?
I explained the methods used above. Basically, syscall is fast and will use no resources when idle. Polling will constantly check for changes and may hog the disk quite a bit for large directories (e.g 1TB). If you have os mounted network shares you want to watch, you must use polling. Otherwise, you should use syscall. For future reference: the "only watch root directory" option will increase the performance of polling
a lot, if you can live with this limitation.