Script improvements #3
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
#4
1 / 2 / 3 done
4 / 5 left
I don't understand how it's possible to rewrite the step4 using Java Streams even though I understand what they do. I can't manage to find the different steps of the conversion operation
Implemented asynchronous passwords decryption (step 5).
Asynchronous decryption is approximately 2 times faster than synchronous :
So we can consider that asynchronous approach is better. Moreover, it's more stable. In fact, synchronous parsing running time was extremely unstable as it was sometimes as fast as asynchronous.
Asynchronous threads are good to split the tasks on the multiple CPUs but it needs a pretty decent computer. Also, it takes time to create a new process child so it's not interesting to use asynchronous actions on a little set of data. The longer the data set, the more time saved !
👋 @Mateo , starts looking good, left some comments directly in the PR. Let me know if the hints are enough 👍