4

I'm new to GAE Java backends and I'm unsure how backends relate to the application versions. I have read the GAE documentation and searched a lot and found nothing that would help.

My questions are:

How is the application version running in the backend selected from the deployed versions? Is it selected exactly like in the frontend, i.e. new backend instances use the default version by default?

If it is so, then what does command appcfg backends update [backend] update exactly? Just the configuration files?

I really think this should be made more clear in the GAE docs.

Thanks.

4

1 に答える 1

6

バックエンドにはバージョンがありません:

  1. 管理コンソールでフロントエンド インスタンスのデフォルト バージョンを選択できますが、バックエンドでは選択できません。

  2. フロントエンド インスタンスのデフォルト バージョンを変更しても、バックエンド インスタンスには影響しません。

  3. バックエンドには 1 つのバージョンしかありません。最新のものはappcfg.

そのため、フロントエンド インスタンスとバックエンド インスタンスの両方に影響するコードを変更する場合は、それを 2 回アップロードする必要があります。

于 2012-05-28T15:54:50.813 に答える