multiprocess {future} | R Documentation |
Create a multiprocess future whose value will be resolved asynchronously using multicore or a multisession evaluation
Description
WARNING: The 'multiprocess' future plan is deprecated. Instead, explicitly specify 'multisession' or 'multicore'. The former works everywhere and is the recommended one between the two. Forked processing, which 'multicore' uses, is unstable in various environment and setups. The 'multiprocess' alias is therefore being phased out, and is now equal to using 'sequential' (sic!)
Usage
multiprocess(..., workers = availableCores(), envir = parent.frame())
Arguments
... |
Additional arguments passed to |
workers |
Ignored in future (>= 1.31.0). |
envir |
The environment from where global objects should be identified. |
Value
A SequentialFuture (sic!) since future 1.31.0.
[Package future version 1.32.0 Index]