I guess there are a couple key notes: 1. The difference in memory model: multithreading (subprocess) uses more memory since Threads use shared memory but you probably won't need to do your own synchronization 2. Threads cannot run python code in parallel due to GIL
I am not sure of the specific context that you are referring to though. V/R, William On Sat, Nov 21, 2015 at 9:46 AM, William Blevins <[email protected]> wrote: > It may depend on your goal; stack overflow can explain quicker than I can; > it boils down to whether a subprocess or thread model solves your problem > better. > > > http://stackoverflow.com/questions/3044580/multiprocessing-vs-threading-python > > > > On Sat, Nov 21, 2015 at 3:51 AM, Bill Deegan <[email protected]> > wrote: > >> Greetings, >> >> Would there be value in using python's multiprocessing package instead of >> threads? >> Anyone have experience using this package? >> >> -Bill >> >> _______________________________________________ >> Scons-dev mailing list >> [email protected] >> https://pairlist2.pair.net/mailman/listinfo/scons-dev >> >> >
_______________________________________________ Scons-dev mailing list [email protected] https://pairlist2.pair.net/mailman/listinfo/scons-dev
