-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where does data live? #204
Comments
Hey, I've written a small part about this here: https://engineering-shiny.org/optim-caveat.html#reading-data My advice would be (in the context of an application that will be deployed on a server):
|
It sounds like the main issue with including data in the app is orthogonal to whether or not you use a package — if you have one R session per user, and want to support multiple simultaneous users, you need to be aware of memory usage in a way that you don't normally have to be. |
If your app need some static data, where should it live? Or if it needs dynamic data, what do you recommend?
The text was updated successfully, but these errors were encountered: