build a production site with bottle

穿精又带淫゛_ 提交于 2019-12-12 01:55:44

问题


I have built a REST API using Python and Bottle web framework. I have tested it locally and it works well according to my needs. I now need to take it online and have multiple people accessing it, maybe concurrently, to upload video files to be processed.

I have read in the bottle documentation information regarding deployment and it seems to me that all I should do is use a load balancer (for example using Pond) and have several bottle processes ready in different ports of my server waiting for clients to arrive.

Is this correct? If, let's say, I open 4 ports with 4 bottle processes, can I be sure that 4 clients will be able to submit their videos concurrently using the same input url+port and not experience any delays?

来源:https://stackoverflow.com/questions/27981861/build-a-production-site-with-bottle

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!