I have been trying to make the Shiny Web faster. It normally takes about 2 minutes to launch the App.R file and open it in web browser. The origin App.R file contains a website that contains 3 tabs and each tab shows significant visualization.
I decided to have 3 different App.R files, seperating them by each tab. Therefore, each App.R file contains codes for each tab.
The logic comes here, instead having one App.R file that runs the code line by line, having 3 different App.R files will run the codes with a parallel process. I am asking this question to make sure that if the logic is right!
is there any other ways that we can make the server faster?