nplyr
nplyr copied to clipboard
Using `furrr::future_map` instead of `purrr::map`
@markjrieke Great effort with the package!
Changing every purrr::map
to furrr::future_map
(in general, every purrr
function with equivalent furrr
function) will help in:
- Using parallel processing with user preferred backend via future (runtime user setting).
- Will fall back to serial (same as
purrr::map
) when parallel backend is not set.
This is a great suggestion, thank you!