Giter Club home page Giter Club logo

async-db's Introduction

Setup

export PYTHONUSERBASE=$PWD/py-env
pip2 install --user -r requirements.txt

Prepare database

If you never had postgres setup:

sudo -u postgres initdb --locale en_US.UTF-8 -D /var/lib/postgres/data
sudo systemctl start postgresql

For mysql/mariadb just start it with sudo systemctl start mysqld, it'll connect using root on localhost which should work out of the box.

Test

Run the app:

uwsgi --ini uwsgi.ini --thr # to work with 1000 thread workers
uwsgi --ini uwsgi.ini --gev # to work with 1000 async gevent cores

Add --env DB=MYSQL to run tests against MySQL/MariaDB (using oursql + greenify).

Test requests:

time curl localhost:8080 -i & \
time curl localhost:8080 -i & \
time curl localhost:8080 -i & \
wait

Observations

The threading library must be patched when using gevent with SQLAlchemy, since the connection pool uses thread locks. Those locks will deadlock (huh) the interpreter udner gevent if not patched with gevent.monkey.patch_thread(). SQLAlchemy before 0.9.3 didn't have those locks, but it probably would fail strangely when used with normal threads.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.