fsnotify
fsnotify copied to clipboard
File system notification for Go
Hi, I've setup a watcher like this: ``` func setupConfigWatcher() { configWatcher, err := fsnotify.NewWatcher() if err != nil { log.Fatal("Setup Config Watcher:",err) } done := make(chan bool) go func()...
I've been running https://github.com/azer/boxcars locally, which uses fsnotify to watch a single configuration file. Today I noticed that it's taking up 0.2% CPU even when idle, which struck me as...
I'm using fsnotify on Red Hat Enterprise Server 6.4 (should be the same as CentOS 6.4). It seems to work and I am receiving events, but with a slightly modified...
I was using exactly the same code in CentOS 5 and it worked flawlessly. Now, I moved my application to CentOS 6.4 and no events are being triggered by my...
Is there currently a work around for this osx watcher limit?