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
After debugging the watcher/scanner, I noticed that at the end of the scan session it will call cleanFolder($path) and will iterate over all cache entries inside that folder and call file_exists to find out whether the file still exists.
As far as I understand, diffing the children of a folder is already done in scanChildren, so not sure why it has to be done again here.
@icewind1991 can you clarify ? Can we get rid of this extra cleanup to gain some performance ?
The text was updated successfully, but these errors were encountered:
After debugging the watcher/scanner, I noticed that at the end of the scan session it will call
cleanFolder($path)
and will iterate over all cache entries inside that folder and callfile_exists
to find out whether the file still exists.As far as I understand, diffing the children of a folder is already done in
scanChildren
, so not sure why it has to be done again here.@icewind1991 can you clarify ? Can we get rid of this extra cleanup to gain some performance ?
The text was updated successfully, but these errors were encountered: