I am using PyRserve. I am want to perform some R evaluations from multiple running python processes. All these evaluations need to use the same global variables, so it would save a lot of time if every new connection could use these variables after being defined only once. Note that redefining these with every connection is not an option because that is time consuming (for ex some variables are models loaded from files). Is there any way to have multiple PyRserve connections that share certain variables? If not what would be a good workaround here?
I could not find anything definitive in the documentation.