You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The DOTNET_USE_POLLING_FILE_WATCHER environment variable, if set to 1 or true, will change the file watchers to switch to a polling mode rather that relying on the OS to notify about a file change. There's a small performance hit and memory increase when using the polling watcher.
The polling file watchers are mostly used in Docker when running code from a shared volume.
The text was updated successfully, but these errors were encountered:
Before
ASPNETCORE_POLL_FOR_FILE_CHANGES
USE_POLLING_FILE_WATCHER
After
DOTNET_USE_POLLING_FILE_WATCHER
PRs
Background
The
DOTNET_USE_POLLING_FILE_WATCHER
environment variable, if set to1
ortrue
, will change the file watchers to switch to a polling mode rather that relying on the OS to notify about a file change. There's a small performance hit and memory increase when using the polling watcher.The polling file watchers are mostly used in Docker when running code from a shared volume.
The text was updated successfully, but these errors were encountered: