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.
嗨,在 App Engine 上启动任务的最佳解决方案是什么?我想要实现的是在注册后每 6、16、30 天向用户发送电子邮件。此服务应独立于应用程序运行(因此不是用户启动的)。
使用 App Engine 和 GWT (Java) 实现这一目标的最佳方法是什么?
谢谢。
根据您的用例,您需要使用计划任务 API(Python或Java)或任务队列 API(Python或Java)。也许使用任务队列发送初始电子邮件,然后可以通过计划任务生成后续电子邮件。