-
Notifications
You must be signed in to change notification settings - Fork 674
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Introducing Vibora (#285) * add vibora this code has been tested and it requires `SO_REUSEPORT` on Ubuntu 16.04, therefore can't guarantee anything about the code. Use it at your own risk. * Update benchmarker.cr * update for vibora * fix routing -> type not required * add vibora * use gunicorn for sanic * use http://meinheld.org/ to enable async networking with django * reuse port on tornado * use meinheld / SO_REUSEPORT on django * use meinheld / SO_REUSEPORT on flask * use python36 to test uvloop base frameworks * do not declare extra dependencies * spread vibora on all cores * remove headers specifications on vibora implementations * use default worker numbers on vibora (more performing) * Introducing Vibora (#285) * add vibora this code has been tested and it requires `SO_REUSEPORT` on Ubuntu 16.04, therefore can't guarantee anything about the code. Use it at your own risk. * Update benchmarker.cr * update for vibora * fix routing -> type not required * add vibora * use gunicorn for sanic * use http://meinheld.org/ to enable async networking with django * reuse port on tornado * use meinheld / SO_REUSEPORT on django * use meinheld / SO_REUSEPORT on flask * Introducing Vibora (#285) * add vibora this code has been tested and it requires `SO_REUSEPORT` on Ubuntu 16.04, therefore can't guarantee anything about the code. Use it at your own risk. * Update benchmarker.cr * update for vibora * fix routing -> type not required * add vibora * use gunicorn for sanic * use http://meinheld.org/ to enable async networking with django * reuse port on tornado * use meinheld / SO_REUSEPORT on django * use meinheld / SO_REUSEPORT on flask
- Loading branch information
Showing
7 changed files
with
101 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,6 @@ nim: | |
python: | ||
dependencies: | ||
- flask | ||
- japronto | ||
- django | ||
- sanic | ||
- tornado | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
appdirs==1.4.3 | ||
japronto==0.1.1 | ||
packaging==17.1 | ||
pyparsing==2.2.0 | ||
six==1.11.0 | ||
uvloop==0.8.1 | ||
-e git+https://github.com/squeaky-pl/japronto.git#egg=japronto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python | ||
FROM python:3.6 | ||
|
||
WORKDIR /usr/src/app | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
python-dateutil==2.6.1 | ||
pendulum==2.0.2 | ||
ujson==1.35 | ||
uvloop==0.10.2 | ||
vibora==0.0.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters