浏览代码

Rendered README.rst

Ask Solem 15 年之前
父节点
当前提交
7d1ddbe63b
共有 1 个文件被更改,包括 12 次插入4 次删除
  1. 12 4
      README.rst

+ 12 - 4
README.rst

@@ -4,7 +4,10 @@
 
 
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 .. image:: http://cloud.github.com/downloads/ask/celery/celery_favicon_128.png
 
 
-:Version: 1.0.0
+:Version: 1.0.1
+:Web: http://celeryproject.org/
+:Download: http://pypi.python.org/pypi/celery/
+:Source: http://github.com/ask/celery/
 :Keywords: task queue, job queue, asynchronous, rabbitmq, amqp, redis,
 :Keywords: task queue, job queue, asynchronous, rabbitmq, amqp, redis,
   django, python, webhooks, queue, distributed
   django, python, webhooks, queue, distributed
 
 
@@ -13,7 +16,7 @@
 Celery is a task queue/job queue based on distributed message passing.
 Celery is a task queue/job queue based on distributed message passing.
 It is focused on real-time operation, but supports scheduling as well.
 It is focused on real-time operation, but supports scheduling as well.
 
 
-The execution units, called tasks, are executed concurrently on one or
+The execution units, called tasks, are executed concurrently on a single or
 more worker servers. Tasks can execute asynchronously (in the background) or synchronously
 more worker servers. Tasks can execute asynchronously (in the background) or synchronously
 (wait until ready).
 (wait until ready).
 
 
@@ -46,7 +49,7 @@ The result of the task can be stored for later retrieval (called its
 Example
 Example
 =======
 =======
 
 
-You probably want to see some code by now, so I'll give you an example task
+You probably want to see some code by now, so here's an example task
 adding two numbers:
 adding two numbers:
 ::
 ::
 
 
@@ -69,7 +72,7 @@ Features
 
 
     +-----------------+----------------------------------------------------+
     +-----------------+----------------------------------------------------+
     | Messaging       | Supported brokers include `RabbitMQ`_, `Stomp`_,   |
     | Messaging       | Supported brokers include `RabbitMQ`_, `Stomp`_,   |
-    |                 | `Redis`_, and the most common SQL databases.       |
+    |                 | `Redis`_, and most common SQL databases.           |
     +-----------------+----------------------------------------------------+
     +-----------------+----------------------------------------------------+
     | Robust          | Using `RabbitMQ`, celery survives most error       |
     | Robust          | Using `RabbitMQ`, celery survives most error       |
     |                 | scenarios, and your tasks will never be lost.      |
     |                 | scenarios, and your tasks will never be lost.      |
@@ -225,6 +228,11 @@ Bug tracker
 If you have any suggestions, bug reports or annoyances please report them
 If you have any suggestions, bug reports or annoyances please report them
 to our issue tracker at http://github.com/ask/celery/issues/
 to our issue tracker at http://github.com/ask/celery/issues/
 
 
+Wiki
+====
+
+http://wiki.github.com/ask/celery/
+
 Contributing
 Contributing
 ============
 ============