Skip to main content

Run WSGI applications with PasteDeploy and gevent.

Project description

With pastegevent package you can run your WSGI applications on top of gevent’s high performace HTTP server.

Configuration

Just use egg:pastegevent#gevent as use directive value of your server configuration section:

[server:main]
use = egg:pastegevent#gevent

If you need to pastegevent to monkey patch stdlib modules for you, use egg:pastegevent#gevent_patched. This will monkey patch all, except DNS subsystem:

[server:main]
use = egg:pastegevent#gevent_patched

But no DNS patching is performed due to inability to reinitialize libevent’s DNS subsystem after forking.

Using of asynchronous DNS resolving with evdns

If your application relies heavy on asyncronous DNS resolving, you probably still need to patch stdlib to use evdns to resolve domain names. Fortunately there are few steps to workaround issue with evdns initialization.

First thing to do is to be sure not not make any network interactions before server startup, so libevent (and its DNS subsystem in particular) will be not be initialized before daemonization. That means no network code in WSGI application factory.

Then you should configure server to use non-patched version of gevent server factory:

[server:main]
use = egg:pastegevent#gevent

and patch DNS yourself in application factory:

def app(global_config, **settings):
    from gevent.monkey import patch_all
    patch_all()
    return wsgi_app

Now your application can take the advantages of asyncronous DNS resolving.

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pastegevent-0.1.tar.gz (1.8 kB view hashes)

Uploaded source

Built Distribution

pastegevent-0.1-py2.6.egg (3.0 kB view hashes)

Uploaded 2 6

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page