Is there a way to share an Object (without serializing) across multiple processes on the same machine? For example I have a Object of class Foo and I want this foo object to be shared across multiple instances of the same Java application. The problem is Foo is very complex object and is not serializable at all.
Like a Map
shared across multiple Java/JVM processes.