Nate 887be0ed46 Python/Flask update (#3055) 7 роки тому
..
templates fbcdb3118a Name python properly 11 роки тому
README.md a09b36673a python: Update READMEs 10 роки тому
app.py edfff690c2 optimize flask (#2857) 8 роки тому
benchmark_config.json 882490524e Upgrade Python 3 + PyPy => PyPy2 rename + PyPy3 integration (#2918) 8 роки тому
gunicorn_conf.py 28cf9580aa python: Use virtualenv to isolate tests. 11 роки тому
nginx.conf e332050c3b python: Use /var/tmp instead of /tmp for unix socket. 8 роки тому
requirements-pypy.txt 887be0ed46 Python/Flask update (#3055) 7 роки тому
requirements.txt 887be0ed46 Python/Flask update (#3055) 7 роки тому
setup_nginxuwsgi.sh c621b4196c Add CPU_COUNT env variable / get MAX_THREADS for load_gen (#2586) 8 роки тому
setup_py2.sh e9c5f6f782 DB Setup Changes / New Travis / Vagrant fix - The Promised Land! (#2417) 8 роки тому
setup_py3.sh e9c5f6f782 DB Setup Changes / New Travis / Vagrant fix - The Promised Land! (#2417) 8 роки тому
setup_pypy2.sh 882490524e Upgrade Python 3 + PyPy => PyPy2 rename + PyPy3 integration (#2918) 8 роки тому
source_code fbcdb3118a Name python properly 11 роки тому
uwsgi.ini e332050c3b python: Use /var/tmp instead of /tmp for unix socket. 8 роки тому

README.md

Flask Benchmark Test

The information below is specific to Flask. For further guidance, review the documentation. Also note that there is additional information that's provided in the Python README.

This is the Python Flask portion of a benchmarking tests suite comparing a variety of frameworks.

All test implementations are located within a single file (app.py).

Description

Flask + Flask-SQLAlchemy

Database

MySQL (mysqlclient on CPython, PyMySQL on PyPy)

Server

  • gunicorn+meinheld on CPython
  • Tornado on PyPy

Test URLs

JSON Encoding

http://localhost:8080/json

Single Row Random Query

With ORM:

http://localhost:8080/dbs

Without ORM (raw):

http://localhost:8080/dbsraw

Variable Row Query Test

With ORM:

http://localhost:8080/db?queries=2

Without ORM (raw):

http://localhost:8080/dbraw?queries=2