Deployment recommandation (use case : restful api)
See original GitHub issueHi,
We have added bottle to our benchmark, but I can see that there is plenty of deployment options
https://bottlepy.org/docs/dev/deployment.html#switching-the-server-backend
Because I use to work with gunicorn, I’ve just implemented gunicorn + meinheld.
Do you have any recommendation according to server backend option ?
Regards,
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Use Case: Hosting RESTful APIs
This use case describes how to host RESTful APIs for consumption by external callers using iWay Integration Tools (iIT). This enables an application...
Read more >Deploying a REST API in Amazon API Gateway
In this section, we discuss how to deploy an API by using the API Gateway console or calling the API Gateway REST API....
Read more >16 REST API design best practices and guidelines - TechTarget
These REST API design guidelines, from using common HTTP protocols and nested hierarchies ... broken integrations and ill-fitted use cases.
Read more >Machine Learning Model Deployment as REST API in Four ...
While there are various ways to achieve it, in this blog I am going to take you through steps of deploying machine learning...
Read more >Confluent REST API Production Deployment
What are the courses? Video courses covering Apache Kafka basics, advanced concepts, setup and use cases, and everything in between. ... Design. Build....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

You can have a look at https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Python/bottle for inspiration. They use gunicorn+meinheld (or tornado in a pypy environment) and their setup is pretty much optimized.
@agalera I observer a sligh increase with
meinheldpacthing 👍