我刚刚开始研究Python的多处理,并对分布式处理感兴趣。在python网站上,它显示类似于以下代码:
from multiprocessing.managers import BaseManager
manager = BaseManager(address=('', 50000), authkey=b'abc')
server = manager.get_server()
server.serve_forever()
和
from multiprocessing.managers import BaseManager
m = BaseManager(address=('127.0.0.1', 50000), authkey=b'abc')
m.connect()
我尝试为每段代码创建两个脚本,然后运行它们。我将127.0.0.1更改为我的计算机IP地址。
我目前不知道如何设置authkey,因此尝试使用“无”,但是出现一个大错误,其中包括以下语句:“摘要发送已被拒绝”
如果可能的话,您能帮忙回答以下问题吗?
感谢您的所有帮助。
答案 0 :(得分:0)
对于Mac,我发现Peter Upfold的这段视频很有用:
Here's a version of the broken "actual structure" code above, fixed with templates.
在PC / Linux等设备上使用时,我将发布更多详细信息。