Recently I got a discussion with a collegue about Streamlit. He told me that Streamlit is not appropriate in case we have several page requests at the same time - especially if the page performs some computationally intensive operations. In my understanding this is not only a matter of the streamlit app but also depends on the server (Tornado) used?
To be honest, I have never thought about this yet, as my application has quite moderate traffic and there shouldn’t be many requests at the same time.
To come to my question: Is it true? And if yes, is there a solution? I am not so familiar with server architecture, work load balancer and so on. Maybe this is a kind of solution !?!?!?
PS:
Maybe not relevant here: We are running streamlit inside a docker container behind a reverse proxy.