在创建进程过程中,有如下代码:
url_manager=Process(target=url_manager_proc,args=(url))
result_solve=Process(target=result_solve_proc,args=())
store=Process(target=store_proc,args=())
url_manager.start()
result_solve.start()
store.start()
然而因为特殊原因,需要传递对象到url_manager_proc函数中。
但是传递对象导致了PermissionError: [WinError 5] 拒绝访问的错误。
url_manager_proc需要形参为类,而该对象没有办法作为全局变量。
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Evil ctypes hack in python
- Correctly parse PDF paragraphs with Python
你可以将对象 进行序列化(pickle),然后在url_manager_proc 中反序列化。
弃用Windows10,改用Linux(Ubuntu18.04)。分布式进程,就应该用Linux好点吧!