我使用云功能作为多人游戏的服务器。
有没有办法设置云功能来执行某些代码或在X秒/分钟内调用另一个功能?我知道有关cron的工作,而且我已经在使用它们了,但我现在想要达到的目标是不同的。
我希望函数安排将来执行相同或其他函数:
exports.testFunction = functions.database.ref('...').onCreate(event => {
//do stuff now
//do the following in 120 seconds or schedule another function
});
PS。我知道函数可以运行的限制是100秒。它现在增加到540秒吗?