Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道有一个Value类型可以分配共享内存,但似乎它只能包含基本的 c 类型。
无论如何允许我们在进程之间传递复杂的数据类型,如队列/映射?
使用Managers。创建一个Manager对象,然后调用manager.Queue(例如)创建一个可共享的Queue代理。然后,您可以腌制返回的代理对象并在进程之间传递它。
Manager
manager.Queue
Queue