diff --git a/django_q/tests/settings.py b/django_q/tests/settings.py index b544963..40e4395 100644 --- a/django_q/tests/settings.py +++ b/django_q/tests/settings.py @@ -5,7 +5,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # Quick-start development settings - unsuitable for production -# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/ +# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/ # SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = ')cqmpi+p@n&!u&fu@!m@9h&1bz9mwmstsahe)nf!ms+c$uc=x7' @@ -61,7 +61,7 @@ TEMPLATES = [ # Database -# https://docs.djangoproject.com/en/1.8/ref/settings/#databases +# https://docs.djangoproject.com/en/2.2/ref/settings/#databases DATABASES = { 'default': { @@ -72,7 +72,7 @@ DATABASES = { # Internationalization -# https://docs.djangoproject.com/en/1.8/topics/i18n/ +# https://docs.djangoproject.com/en/2.2/topics/i18n/ LANGUAGE_CODE = 'en-us' @@ -101,7 +101,7 @@ LOGGING = { } # Static files (CSS, JavaScript, Images) -# https://docs.djangoproject.com/en/1.8/howto/static-files/ +# https://docs.djangoproject.com/en/2.2/howto/static-files/ STATIC_URL = '/static/' diff --git a/docs/brokers.rst b/docs/brokers.rst index 109a653..b1b7633 100644 --- a/docs/brokers.rst +++ b/docs/brokers.rst @@ -47,7 +47,7 @@ Bulk task retrieval is supported via the :ref:`bulk` option. * Delivery receipts * Atomic -* Needs Django's `Cache framework `__ configured for monitoring +* Needs Django's `Cache framework `__ configured for monitoring * Compatible with `Tynd `__ Disque addon on `Heroku `__ * Still considered Alpha software * Supports bulk dequeue @@ -60,7 +60,7 @@ This HTTP based queue service is both available directly via `Iron.io `__ configured for monitoring +* Needs Django's `Cache framework `__ configured for monitoring * Requires the `iron-mq `__ client library: ``pip install iron-mq`` * See the :ref:`ironmq_configuration` configuration section for options. @@ -72,7 +72,7 @@ Although `SQS `__ is not the fastest, it is stable, * Delivery receipts * Maximum message size is 256Kb * Supports bulk dequeue up to 10 messages with a maximum total size of 256Kb -* Needs Django's `Cache framework `__ configured for monitoring +* Needs Django's `Cache framework `__ configured for monitoring * Requires the `boto3 `__ client library: ``pip install boto3`` * See the :ref:`sqs_configuration` configuration section for options. @@ -83,7 +83,7 @@ This highly scalable NoSQL database makes for a very fast and reliably persisten Usually available on most PaaS providers, as `open-source `__ or commercial `enterprise `__ edition. * Delivery receipts -* Needs Django's `Cache framework `__ configured for monitoring +* Needs Django's `Cache framework `__ configured for monitoring * Can be configured as the Django cache-backend through several open-source cache providers. * Requires the `pymongo `__ driver: ``pip install pymongo`` * See the :ref:`mongo_configuration` configuration section for options. @@ -98,8 +98,8 @@ However for a medium message rate and scheduled tasks, this is the most convenie * Delivery receipts * Supports bulk dequeue -* Needs Django's `Cache framework `__ configured for monitoring -* Can be `configured `__ as its own cache backend. +* Needs Django's `Cache framework `__ configured for monitoring +* Can be `configured `__ as its own cache backend. * Queue editable in Django Admin * See the :ref:`orm_configuration` configuration on how to set it up. diff --git a/docs/configure.rst b/docs/configure.rst index 18e8d42..38bdf0c 100644 --- a/docs/configure.rst +++ b/docs/configure.rst @@ -400,7 +400,7 @@ Defaults to ``0.2`` (seconds). cache ~~~~~ -For some brokers, you will need to set up the Django `cache framework `__ +For some brokers, you will need to set up the Django `cache framework `__ to gather statistics for the monitor. You can indicate which cache to use by setting this value. Defaults to ``default``. .. _cached: