Saturday, 24 August 2013

Multithreading decorator for Python Django

Multithreading decorator for Python Django

Some functions should run asynchronously on the web server. Sending emails
is a classic example.
What is the best (or most pythonic) way write a decorator function to run
a function asynchronously?
My setup is a common one: Python 2.4.7, Django 1.4, Gunicorn 0.17.2

No comments:

Post a Comment