Mixing python with a faster language for optimization in GAE

前端 未结 2 1538
孤城傲影
孤城傲影 2021-01-04 20:56

I\'m a newbie in the Python and GAE world and I have a question. With Python the normal approach is to only optimize the code when needed, fixing the more urgent bottlenecks

2条回答
  •  感动是毒
    2021-01-04 21:22

    See Can I write parts of the Google App Engine code in Java, other parts in Python? for how to use multiple languages.

    Basically, each version of a given app can only use one runtime language.

    But, you can have two different versions of your app, written in different languages, and they can pass information back and forth through the datastore.

    Also, you can have two different apps, in two different languages, and you can have then pass information back and forth through requests.

提交回复
热议问题