我应该如何处理/_ah/start
和/_ah/stop
的请求?现在他们只得到404。
还有,为什么有时起点和终点相距10分钟,有时又相距1分钟?
app.yaml
看起来像这样:
instance_class: B4_1G
basic_scaling:
max_instances: 11
idle_timeout: 60m
答案 0 :(得分:1)
您可以使用Express处理类似的请求
app.get('/_ah/start', (req, res) => { //rest of the code
关于请求之间的时间为何不同的原因,取决于应用程序的使用情况。您收到/_ah/start
when there is the need to start a new instance和/_ah/stop
的重新启动/停止请求