I have a dict to store objects:
jobs = {} job = Job() jobs[job.name] = job
now I want to convert it to use manager dict because I want to use m
If you are using mgr.dict() inside a loop in your pool. You can use a local normal dict to store results temporarily and then update your mgr.dict() outside the loop like your_mgr_dict.update(local_dict)
mgr.dict()
your_mgr_dict.update(local_dict)