I need a %SYS.Python object that will be accessible from different processes. The goal is to avoid reinitializing the Python object whenever it is called. Ways that I checked and decided that it is NOT what I want:
- %-variables (process variables). Reusing only in the same process
- Save-and-restore via globals. Restoring means heavy initialization, which I want to avoid
Next, my ideas (none of them look like a silver bullet):
- Using Interoperability Production.








