Ver Fonte

Release Candidate 5

Ask Solem há 12 anos atrás
pai
commit
9d91c57e88
3 ficheiros alterados com 11 adições e 10 exclusões
  1. 9 8
      README.rst
  2. 1 1
      celery/__init__.py
  3. 1 1
      docs/includes/introduction.txt

+ 9 - 8
README.rst

@@ -4,7 +4,7 @@
 
 .. image:: http://cloud.github.com/downloads/celery/celery/celery_128.png
 
-:Version: 2.6.0rc4
+:Version: 2.6.0rc5
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/
@@ -22,7 +22,7 @@ Synopsis
 ========
 
 Celery is an open source asynchronous task queue/job queue based on
-distributed message passing.  Focused on real-time operation,
+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
@@ -97,12 +97,13 @@ This is a high level overview of the architecture.
 
 .. image:: http://cloud.github.com/downloads/celery/celery/Celery-Overview-v4.jpg
 
-The broker delivers tasks to the worker nodes.
-A worker node is a networked machine running `celeryd`.  This can be one or
-more machines depending on the workload.
+The broker delivers tasks to the worker instances.
+A worker instance is started by running the `celery worker` program.
+You can have many networked machines running worker instances, forming a
+cluster, or you can run everything on a single machine.
 
-The result of the task can be stored for later retrieval (called its
-"tombstone").
+The return value of the task can be stored for later retrieval,
+and the progress of the task can be tracked (called the task's *state*).
 
 .. _celery-example:
 
@@ -110,7 +111,7 @@ Example
 =======
 
 You probably want to see some code by now, so here's an example task
-adding two numbers:
+which adds two numbers:
 ::
 
     from celery import task

+ 1 - 1
celery/__init__.py

@@ -7,7 +7,7 @@
 
 from __future__ import absolute_import
 
-VERSION = (2, 6, 0, 'rc4')
+VERSION = (2, 6, 0, 'rc5')
 __version__ = '.'.join(map(str, VERSION[0:3])) + ''.join(VERSION[3:])
 __author__ = 'Ask Solem'
 __contact__ = 'ask@celeryproject.org'

+ 1 - 1
docs/includes/introduction.txt

@@ -1,4 +1,4 @@
-:Version: 2.6.0rc4
+:Version: 2.6.0rc5
 :Web: http://celeryproject.org/
 :Download: http://pypi.python.org/pypi/celery/
 :Source: http://github.com/celery/celery/