Multiprocessing Module In Python2.7 Causing Some Issue
I am using multiprocessing module in python2.7 and found to have some issue with it, which is currently going out of my head, as in how to resolve it. The sample code that I am usi
Solution 1:
Global variables are not shared between multiple processes; you are manipulating a global list in a sub-process only, the parent process won't see the changes.
Review the documentation on sharing state for options on how to pass information between processes. You probably want a Manager
instance to share your list.
Post a Comment for "Multiprocessing Module In Python2.7 Causing Some Issue"