Rails 中的批量用户创建 - 很好地利用delayed_job?
在我的 Rails 应用程序的管理面板中,我希望管理员能够一次创建多个用户(数百个范围内)。这对于delayed_job来说是一个很好的用途吗?
In the administration panel for my rails application I want to give the administrator the ability to create several users at one time (in the hundreds range). Would this be a good use for delayed_job?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。
这里是我用来确定是否应该使用延迟作业的标准:
如果我的答案是“是”、“否”、“否”、“是”,那么我会使用延迟的工作。你的情况符合我的标准。
Yes.
Here the criteria I use to determine if a delayed job should be used or not:
If my answers were Yes, No, No, Yes, then I would use a delayed job. Your situation meets my criteria.
我想不需要立即创建用户。如果他们在接下来的 5 分钟内出现,那就没问题。
那么是的,这适用于延迟工作。
I guess the users don't need to be created right away. If they are within the next 5 minutes, it's ok.
Then yeah, this is applicable with delayed job.