Changes between Initial Version and Version 1 of Ticket #28602


Ignore:
Timestamp:
Sep 16, 2017, 4:33:23 AM (7 years ago)
Author:
Adam Sowa
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28602 – Description

    initial v1  
    1 Currently utils/autoreload.py has implementation for inotify based file system watcher. On Windows it scans all files for changes every 1 second which takes a lot of CPU. Windows provides file system watching API (FindFirstChangeNotification) which does the same thing as inotify on Linux. Django should take advantage of the API to make autoreloader more efficient.
     1Currently utils/autoreload.py has implementation for inotify based file system watcher. On Windows it scans all files for changes every 1 second which takes a lot of CPU. Windows provides file system watching API (FindFirstChangeNotification) which does the same thing as inotify on Linux. Django should take advantage of the API to make autoreload more efficient.
Back to Top