Manager

This lesson introduces the manager as an entity that enables seamless sharing of data and objects amongst processes.

We'll cover the following...

Manager

Python provides a way to share data between processes that may be running on different machines. The previous examples we saw of inter-process communication were restricted to a single machine. Using the Manager class we can share objects between processes running on the same machine or different ...