How do dynamic backends start in Google App Engine

后端 未结 3 1255
陌清茗
陌清茗 2021-02-04 12:58

Can we start a dynamic backend programatically? mean while when a backend is starting how can i handle the request by falling back on the application(i mean app.appspot.com).

3条回答
  •  遥遥无期
    2021-02-04 13:36

    Backends are documented quite thoroughly here. Backends have to be started and stopped with appcfg or the admin console, as documented here. A stopped backend will not handle requests - if you want this, you should probably be using the Task Queue instead.

提交回复
热议问题