Comment on A Celery-like Python Task Queue in 55 Lines of CodeparentComments−joevandyk12ymaybe use sqlite?http://flask.pocoo.org/snippets/88/−mborch12yWith PostgreSQL, you can use advisory locks and other little tricks to get better performance, e.g.https://github.com/malthe/pq/blob/master/pq/__init__.py#L224
Comments
maybe use sqlite?
http://flask.pocoo.org/snippets/88/
With PostgreSQL, you can use advisory locks and other little tricks to get better performance, e.g.
https://github.com/malthe/pq/blob/master/pq/__init__.py#L224