The promises package brings asynchronous programming capabilities to R. Asynchronous programming is a technique used by many programming languages to increase scalability and responsiveness. Traditionally, this style of programming has not been useful to R users. But the advent of R web applications like Shiny has made async programming relevant.
This website provides a multi-step guide that will help familiarize you with several related concepts that are required for effective async programming. It is highly recommended that you go through the topics in order.
The promises package is not yet on CRAN, nor is an async-compatible version of Shiny. You can install both promises and an async-compatible version of Shiny with this command:
devtools::install_github("rstudio/shiny")
There are also some supporting packages that have experimental async-compatible branches:
devtools::install_github("ramnathv/htmlwidgets@async")
devtools::install_github("jcheng5/plotly@joe/feature/async")
devtools::install_github("rstudio/DT@async")
Why do we need async programming? What is it good for, and not good for?
Async programming can require a serious mental shift, even for veteran programmers. This document attempts to introduce the “average” R user to the topic, as gently as possible.
A more thorough exploration of the concepts behind promises, and the API provided by the promises package.
A guide to the future package, the place where we expect most async programming in R to begin.
Learn how to integrate promises into your Shiny applications.
Functions and techniques for working with multiple promises simultaneously.