Ryan
Ryan

Reputation: 231

Can multiple users access an open source Shiny Server concurrently?

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

Answers (2)

Alexander
Alexander

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

Jan Stanstrup
Jan Stanstrup

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

Related Questions