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
Currently we have the unblob running around recursively calling the process_file function.
This makes the investigations and extending the core code harder.
In this way the parameters of the process_file are mixed: it contains variables, configuration globals, local states, etc....
We had an idea that instead of recursively calling it over and over again, we could have a simple Queue, where we could put Tasks which needs to be processed. This would potentially improve the code quality and add the ability to easily extend with multiprocessing.
Currently we have the unblob running around recursively calling the
process_file
function.process_file
are mixed: it contains variables, configuration globals, local states, etc....We had an idea that instead of recursively calling it over and over again, we could have a simple
Queue
, where we could putTasks
which needs to be processed. This would potentially improve the code quality and add the ability to easily extend with multiprocessing.Somehow related to:
The text was updated successfully, but these errors were encountered: