Add argument rscript_options to makeClusterPSOCK(), cf. argument rscript_envs. This can be used to see R options on the cluster nodes on startup. For example,
cl <- makeClusterPSOCK(1, rscript_options=list(socketOptions="no-delay"))
and
options(socketOptions="no-delay")
cl <- makeClusterPSOCK(1, rscript_options="socketOptions")
Background: futureverse/future#437
Add argument
rscript_optionstomakeClusterPSOCK(), cf. argumentrscript_envs. This can be used to see R options on the cluster nodes on startup. For example,and
Background: futureverse/future#437