Since I haven\'t found an answer to the question asked previously here I\'m trying a different approach.
Is there any way to share memory between two processes?
Did you try to use pipes (for memory) or even serialization (for your objects)? You can use files to manage memory between processes. Sockets are also good to get communication between processes.