标签: python django
我已经创建了一个模型和post_save信号,它将用这样的内容调用管理命令
from django.core import management management.call_command('your_command', your_options)
在该管理命令中,我必须重新启动进程。我有15台使用相同django服务器的机器。
如果更改模型,则将在其中一台计算机上触发post_save,并在该计算机上启动进程。但是我希望在所有机器中触发post_save信号。我该怎么办?