This repo contains examples to implement asynchronous programming in Shiny ✨
Async programming can sound very daunting but by providing specific Shiny examples the aim is to speed up the learning curve.
Asynchronous programming allows for the execution of multiple tasks concurrently, improving the performance and responsiveness of Shiny applications. Traditional synchronous programming executes tasks sequentially, which can result in slower response times and blocked resources. By default, a Shiny applications runs on a single-threaded synchronous R session.
Asynchronous programming in Shiny can be achieved through various packages that provide mechanisms for running code concurrently, such as promises, callr, coro, mirai and crew. These packages allow developers to write more efficient and responsive code.
You can also use promises
in combination with ExtendedTask from Shiny version 1.8.1.
- promises: two examples demonstrating cross-session asynchronicity using
promises
andfuture
. One example demonstrations inner-session asynchronicity as well by making use of areactiveVal()
structure. This follows the examples in Engineering Production-Grade Shiny Apps, and it is kind of a workaround.promises_extendedtask.R
contains an example withExtendedTask
from Shiny 1.8.1, which makes it easy to achieve both cross-session and inner-session asynchronicity. It works perfectly in combination withinput_task_button()
andbind_task_button()
from bslib 0.7.0. - callr: three examples that show how to spin up background R processes.
callr_single_task.R
runs a long computation in the background,callr_rmd.R
knits a markdown document in the background, andcallr_nonblocking.R
demonstrates how this is not blocking the process by displaying a clock. - coro: one example that demonstrates how to program concurrently using the async() function from
coro
. In this example, we also usepromises
and we demonstrate howpromise_all()
works to handle multiple promises at the same time. - mirai: two examples that will walk you through the minimalist package called
mirai
(which means future in Japanese).mirai
provides a simple interface to efficiently schedule tasks on local or remote resources.mirai
implements ultra-efficient promises that are completely event-driven and non-polling, and may be used in a Shiny app anywhere that accepts promises. In the examples in this repo you can also find an example withExtendedTask
. For further examples, check out the mirai Shiny vignette. - crew: on top of
mirai
, there's a package calledcrew
that helps you to manage and control workers. The interface is pretty neat and intuitive. There's a lot of functionality, which includes the option to specify remote workers. In this folder there are two examples: one that demonstrates how to send a single task to a worker, and one that demonstrates how to send multiple tasks to multiple workers. For more info see crew on GitHub. There are three examples:crew_single_task.R
,crew_multiple_tasks.R
andcrew_promises
, and all demonstrate the non-blocking behavior ofcrew
clearly by displaying a clock that keeps running. The later example also demonstrates how to use themirai
andpromises
combination withcrew
, making use of event-driven promises.
I have a couple of videos on YouTube about async programming in Shiny:
- Launch multiple asynchronous tasks in R Shiny with crew + create dynamic number of outputs
- Async Programming in Shiny with crew and callr
- Say goodbye to unnecessary waiting: mastering asynchronous programming in Shiny - ShinyConf2023 Keynote Talk
The plan is to add more examples and tutorials on how to implement asynchronous programming in Shiny. Keep an eye on this repository for updates.
Do you want to add examples to this repo? That's awesome 👏 . I'm welcoming all support!