Efficient Python to Python IPC [closed]
Native objects don’t get shared between processes (due to reference counting). Instead, you can pickle them and share them using unix domain sockets, mmap, zeromq, or an intermediary such a sqlite3 that is designed for concurrent accesses.