Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 Grails Web 应用程序,想从某些 API 中提取一些数据,该 API 每天每个 IP 只允许 1000 次调用。我必须打大约一百万个电话才能获得我需要的所有数据。(比如说所有一百万用户)。
因此,我想在 Grails 中编写一个脚本,每天调用该 API 1000 次,并且及时填满我的数据库。
我只知道线程,但是线程是解决这个问题的最佳方法吗?
Quartz 插件为 Grails 应用程序添加了Quartz 作业调度功能
文档可以在这里找到