Skip to content

leonardo-modules/leonardo-celery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Leonardo Celery Worker

This module provide worker for hard work around periodical syncing and updating caches, sending emails or whatever you need do asynchronously.

pip install leonardo-celery
pip install django-leonardo[celery]
BROKER_URL = 'redis://localhost:6379/0'

BROKER_URL = 'amqp://user:password@127.0.0.1:5672/leonardo'

Set custom scheduler and result backend

CELERY_RESULT_BACKEND = 'djcelery.backends.database:DatabaseBackend'

CELERYBEAT_SCHEDULER = "djcelery.schedulers.DatabaseScheduler"
python manage.py celery worker -B -E

For syncing state to databse run celerycam

python manage.py celerycam

Tasks are discovered by standard mechanism:

app.autodiscover_tasks(lambda: settings.INSTALLED_APPS)

Use cacheback jobs for fetching data asynchronously.

pip install leonardo-celery[cacheback]

Define your jobs. More about Jobs http://django-cacheback.readthedocs.org/en/latest/usage.html#as-an-instance-of-cacheback-job

About

Celery workers for Leonardo CMS

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages