We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When collecting the metadata, the following loop consumes most of the processing time and would benefit from a parallelisation.
pygac-fdr/pygac_fdr/metadata.py
Lines 157 to 181 in 4e52f7d
In combination with #31 this could be implemented using
import multiprocessing [...] with multiprocessing.Pool(n_worker) as pool: for metadata in pool.imap_unordered(extract_metadata, filenames): session.add(metadata) [...]
The text was updated successfully, but these errors were encountered:
Good idea! pygac-fdr-run would also benefit from that probably (processing multiple files in parallel).
pygac-fdr-run
Sorry, something went wrong.
No branches or pull requests
When collecting the metadata, the following loop consumes most of the processing time and would benefit from a parallelisation.
pygac-fdr/pygac_fdr/metadata.py
Lines 157 to 181 in 4e52f7d
In combination with #31 this could be implemented using
The text was updated successfully, but these errors were encountered: