Ways to make R learnr tutorials smaller?

I'm deploying a learnr tutorial via Heroku to host it on the web. Here's where it's being hosted currently: http://gov-50-ch-2.herokuapp.com/

It consumes a MASSIVE amount of memory, overloading the memory quota allowed by the Heroku system I'm using. I'm concerned because this tutorial is supposed to see traffic from 100-200 users after deployment.

I know that options(tutorial.storage = learnr::filesystem_storage(dir = "./storage")) creates a directory called storage that contains the user's tutorial answers. I was wondering if there were any arguments that could somehow cache information so that the tutorial doesn't consume as much memory.

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.