
Last chance! 50% off unlimited learning
Sale ends in
injectNextStrategy(future, expr, ...)
options(mc.cores=0L)
, which
means that no additional R processes may be spawned off
by functions such as mclapply()
and friends (*).Currently it is not possible to specify what type of nested
futures to be used, meaning the above default will always be
used.
See
(*) Note that using mc.cores=0
will unfortunately cause
mclapply()
and friends to generate an error saying
"'mc.cores' must be >= 1". Ideally those functions should
fall back to using the non-multicore alternative in this
case, e.g. mclapply(...)
=> lapply(...)
.
See