diff options
author | miwi <miwi@FreeBSD.org> | 2012-03-25 00:06:44 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2012-03-25 00:06:44 +0800 |
commit | 63f63a72406a3c1f62283ab4b919159758e763e9 (patch) | |
tree | 235e323659255519c728af67dc09618d87452f19 /devel/Makefile | |
parent | 9f472435c98078d27209dd8282eb6fbfc6dc4a55 (diff) | |
download | freebsd-ports-gnome-63f63a72406a3c1f62283ab4b919159758e763e9.tar.gz freebsd-ports-gnome-63f63a72406a3c1f62283ab4b919159758e763e9.tar.zst freebsd-ports-gnome-63f63a72406a3c1f62283ab4b919159758e763e9.zip |
Celery is an open source asynchronous task queue/job queue based on distributed
message passing. It is focused on real-time operation, but supports scheduling
as well.
The execution units, called tasks, are executed concurrently on one
or more worker nodes. Tasks can execute asynchronously (in the
background) or synchronously (wait until ready).
Celery is written in Python, but the protocol can be implemented
in any language. It can also operate with other languages using
webhooks.
The recommended message broker is RabbitMQ, but limited support for Redis,
Beanstalk, MongoDB, CouchDB, and databases (using SQLAlchemy or the Django
ORM) is also available.
WWW: http://pypi.python.org/pypi/celery/
PR: ports/165693
Submitted by: Alexandros Kosiaris <akosiaris+ports@gmail.com>
Feature safe: yes
Diffstat (limited to 'devel/Makefile')
-rw-r--r-- | devel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index bd8fdaa096a1..800aa9d76292 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -3146,6 +3146,7 @@ SUBDIR += py-boto-devel SUBDIR += py-cclib SUBDIR += py-celementtree + SUBDIR += py-celery SUBDIR += py-cfgparse SUBDIR += py-cheetah SUBDIR += py-ciphon |