Django 定时事件
我想为我的用户安排活动。有没有一种有效的方法可以在 Python/Django 中轻松地做到这一点?我不想轮询优先级队列。
谢谢!
编辑:我想澄清一下,该作业是针对每个用户运行的,可能有数百或数千个用户。
I want to schedule events to happen for my users. Is there an efficient way to do this in Python/Django easily? I'd prefer not to poll a priority queue.
Thanks!
Edit: I want to clarify that this job is run per user, for potentially hundreds or thousands of users.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能会有所帮助:
Django - 设置计划作业?
This may help:
Django - Set Up A Scheduled Job?
您可能应该查看: http://celeryproject.org/
从网站:
You should probably look at: http://celeryproject.org/
From the website:
django-cron 怎么样?
How about django-cron?