Some very basic questions #250
-
First, thanks a lot for this package. I didn't use it yet because I still have some unanswered basic questions about its functioning but it looks very promising.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
mirai takes a socket (message-passing) approach. It does not fork as this is unsafe in many cases.
You could do
I'm not sure what those options refer to, but mirai does not use any options or environment variables for explicitness and ease of debugging apart from anything else. |
Beta Was this translation helpful? Give feedback.
-
Thank you very much for your answers. Regarding 2., can I also export functions without having to define them within Regarding 3., there is then no way to control the maximum number of cores used by daemons? |
Beta Was this translation helpful? Give feedback.
mirai takes a socket (message-passing) approach. It does not fork as this is unsafe in many cases.
You could do
everywhere({}, variable1, variable2)
i.e. not execute anything but export those global variables, w…