I want to learn to use multiprocessing.Manager. I looked at the documentation but it's not easy enough for me. Anyone knows of a good tutorial or something like that?
|
|
|||||||||
|
|
This page has some great multiprocessing examples, including examples of how to use Manager. I found it really helpful in wrapping my head around multiprocessing. |
||||
|
|
|
Hm, from a first glance, the documentation of multiprocessing.Manager seems decent:
Manager objects allow you to create variables shared in multiple processes. What is it that you exactly want to achieve? Maybe a request for an example would help? |
|||||
|
|
Another page, for those looking for more information on multiprocessing in general that might be of use is: http://www.ibm.com/developerworks/aix/library/au-multiprocessing/ Its an IBM tutorial that gives as real world example using Net-SMNP which normally blocks the process till it finishes giving a fantastic example of how using multiprocessing can resolve issues with thread blocking code processes. |
|||
|
|