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
Current implementation waits file deletion to continue. Same thing goes for cache clearing. Instead, after collecting files and directories, they can be deleted in parallel like following:
For my sample apk (on windows) current implementation takes around 10 seconds to delete. (decompiled all classes). By doing it parallel it takes around 1 second. Are there any drawbacks to delete files in parallel ?
Jadx version
dev
Java version
21.0.5
OS
Windows
Linux
macOS
The text was updated successfully, but these errors were encountered:
Are there any drawbacks to delete files in parallel ?
It is fine. The only possible drawback is that file system can change after files collection but before deletion start. This is not a big issue, and current implementation also have same drawback.
Issue details
Current implementation waits file deletion to continue. Same thing goes for cache clearing. Instead, after collecting files and directories, they can be deleted in parallel like following:
For my sample apk (on windows) current implementation takes around 10 seconds to delete. (decompiled all classes). By doing it parallel it takes around 1 second. Are there any drawbacks to delete files in parallel ?
Jadx version
dev
Java version
21.0.5
OS
The text was updated successfully, but these errors were encountered: