Recent Posts

Extending Django Constraints to ForeignKeys with DB triggers

Extending Django check constraint to ForeignKeys with db triggers

Have you ever wanted to implement Django's check constraints and constrain a model field with checks on a particular field of a ForeignKey of the model? Django does not support it out of the box - because check constraints translate to database constraints, and no database supports it at the table constraint level. 1 2

Read More

Get back @periodic_task in Celery 5

Celery 5 removed the periodic_task decorator - use this article to create your custom decorator

The @periodic_task decorator was deprecated in Celery 4 and completely removed in Celery version 5. If you (like me) used it heavily and are frustrated that you have to migrate to a different way of defining what times the periodic_task will run, here is what you can do to get back @periodic_task decorator

Read More

Categories: celery