Reputation: 231
I have a program that is built in R and runs on the desktop version of Shiny. I am working on moving the project to a Shiny server. Would it be possible for multiple users to use the program at the same time on the Open Source version of Shiny Server or will there be an issue with concurrent users?
Thanks
Upvotes: 3
Views: 2586
Reputation: 490
According to their support page it can have an unlimited number of users:
Yes. Shiny Server is constrained only by its features.
Upvotes: 1
Reputation: 1232
I am not a shiny developer but yes. The limitation is that one R process will be used. So if user1 runs some process that takes some time user2's processes will wait for user1 to finish.
Upvotes: 0