is use of later for asynchronous beneficial with future? #500
Unanswered
ravinder387
asked this question in
Q&A
Replies: 1 comment
-
It's hard to comment without more precise examples/use cases.
plan(multisession)
f <- future({ your R expression }) will evaluate that R expression in the background. The later package, or rather the promises package, can be used to retrieve the
Multi-threading is only available when using native code, e.g. C and C++. It's not available at the R level. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
is future package do automatically asychronous execution of my r code OR should i include later package? And is there any multi-threaded package in R?
Beta Was this translation helpful? Give feedback.
All reactions