Configure the parallel processing strategy for riemtan operations. Uses the future package to manage parallel backends.
Arguments
- strategy
Character string specifying the parallel strategy:
"sequential": No parallelization (default for safety)"multisession": Parallel processing using multiple R sessions (works on all platforms including Windows)"multicore": Parallel processing using forked R processes (Unix-like systems only, faster but not available on Windows)"cluster": Parallel processing on a cluster of machines
- workers
Integer specifying the number of parallel workers. If
NULL(default), usesparallel::detectCores() - 1to leave one core free. Ignored whenstrategy = "sequential".