From 6a3b5ba5b3c50a3d1ad2820d43a0771a89a1e8a9 Mon Sep 17 00:00:00 2001 From: Panagiotis Simakis Date: Sun, 28 Oct 2018 10:05:28 +0200 Subject: [PATCH 1/2] add rq --- python.md | 1 + 1 file changed, 1 insertion(+) diff --git a/python.md b/python.md index 5e1154c..351c15a 100644 --- a/python.md +++ b/python.md @@ -199,6 +199,7 @@ statistic of browsers * [threading](http://docs.python.org/2.7/library/threading.html) - standard python library to run threads. Effective for I/O-bound tasks. Useless for CPU-bound tasks because of python GIL. * [multiprocessing](http://docs.python.org/2.7/library/multiprocessing.html) - standard python library to run processes. * [celery](http://www.celeryproject.org/) - An asynchronous task queue/job queue based on distributed message passing. +* [rq](https://python-rq.org/) - Simple job queues for Python * [concurrent-futures](https://docs.python.org/3/library/concurrent.futures.html) - The concurrent.futures module provides a high-level interface for asynchronously executing callables. ## Asynchronous From 3ccc43bdd0bfd3d3c03f304518036adbe5b1e24c Mon Sep 17 00:00:00 2001 From: Gregory Petukhov Date: Sun, 28 Oct 2018 14:23:27 +0300 Subject: [PATCH 2/2] update python-rq link --- python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python.md b/python.md index 351c15a..36a2041 100644 --- a/python.md +++ b/python.md @@ -220,7 +220,7 @@ statistic of browsers * [celery](http://www.celeryproject.org/) - An asynchronous task queue/job queue based on distributed message passing. * [huey](https://github.com/coleifer/huey) - Little multi-threaded task queue. * [mrq](https://github.com/pricingassistant/mrq) - Mr. Queue - A distributed worker task queue in Python using Redis & gevent. -* [RQ](http://python-rq.org/docs/) - lightweight task queue manager based on redis +* [RQ](https://github.com/rq/rq) - lightweight task queue manager based on redis * [simpleq](https://github.com/rdegges/simpleq) - A simple, infinitely scalable, Amazon SQS based queue. * [python-gearman](https://github.com/Yelp/python-gearman) - python API for Gearman