We have used FileSystemWatcher to notify content changes on asp.net application that runs on webfarm.
The FileSystemWatcher works fine when small no of files are changed due to it's internalbuffersize memory limitation.
If we use maximum internalbuffersize memory it could only handle 4096 files changes.But we have a scenario where more than 20 thousands files could change on short interval of time.Is there any possible ways to use FileSystemWatcher to work on this scenario.
The FileSystemWatcher works fine when small no of files are changed due to it's internalbuffersize memory limitation.
If we use maximum internalbuffersize memory it could only handle 4096 files changes.But we have a scenario where more than 20 thousands files could change on short interval of time.Is there any possible ways to use FileSystemWatcher to work on this scenario.