0

Are celery signals asynchronous unlike django signals that are synchronous? Just curious for instance task_success signal from celery vs post_save signal from django.

oma0256
  • 103
  • 4
  • 11
  • Does this answer your question? [Is Django post\_save signal asynchronous?](https://stackoverflow.com/questions/11899088/is-django-post-save-signal-asynchronous) - take a look at @Bouke answer – Pedram Parsian Dec 23 '19 at 09:15

1 Answers1

0

Some celery signals are executed in-process (i.e., semi-synchronous), and others may be executed out-of-process and asynchronously. You can read the documentation here to determine which is which.

2ps
  • 15,099
  • 2
  • 27
  • 47