There's a task that targets fairly large table data There are about 10 columns, 5 of which are combined and extracted, and we are working on them.
This result is
(combination: result value (one floating point))
( ("A","B","C","D","E" ) : 0.123 )
It's a simple form of something.
It's good to split the process, but what's the simple way to put the results of this divided process together? The order is irrelevant.
Should I put up the DB? I thought, but it's not simple.
Please recommend an easy way.
python process
If you create and process multiple processes in one process, multiprocessing.How about using Queue?
https://docs.python.org/ko/3/library/multiprocessing.html#exchanging-objects-between-processes
© 2024 OneMinuteCode. All rights reserved.