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
Using dispatch_once in sharedTrashURL implementation ensures that the work is done once, great.
Unfortunately, it also makes the assumption that developers will not clear the temp directory's content. But if they do, it breaks any future deletion from the cache. Considering how big the consequence is, I think the approach can be refined.
The text was updated successfully, but these errors were encountered:
Using
dispatch_once
insharedTrashURL
implementation ensures that the work is done once, great.Unfortunately, it also makes the assumption that developers will not clear the temp directory's content. But if they do, it breaks any future deletion from the cache. Considering how big the consequence is, I think the approach can be refined.
The text was updated successfully, but these errors were encountered: