diff --git a/docs/admin.rst b/docs/admin.rst index 8871dc7..d17ebdc 100644 --- a/docs/admin.rst +++ b/docs/admin.rst @@ -4,7 +4,7 @@ Admin pages =========== -Django Q does not use custom HTML pages, but instead uses what is offered by Django's model admin by default. +Django Q does not use custom pages, but instead leverages what is offered by Django's model admin by default. When you open Django Q's admin pages you will see three models: Successful tasks diff --git a/docs/index.rst b/docs/index.rst index edd6f27..6a157e6 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -5,7 +5,7 @@ Welcome to Django Q =================== -Django Q is a native Django task queue and worker application using Python multiprocessing. +Django Q is a native Django task queue, scheduler and worker application using Python multiprocessing. Features diff --git a/docs/tasks.rst b/docs/tasks.rst index 10c5a65..73dddf5 100644 --- a/docs/tasks.rst +++ b/docs/tasks.rst @@ -153,6 +153,7 @@ The task will then be injected straight into a worker and the result saved by a An error occurred: ImportError("No module named 'my'",) Note that :func:`async` will block until the task is executed and saved. This feature bypasses the Redis server and is intended for debugging and development. +Instead of setting ``sync`` on each individual ``async`` you can also configure :ref:`sync` as a global override. Connection pooling ------------------