Choosing Java vs Python on Google App Engine

后端 未结 15 1092
时光取名叫无心
时光取名叫无心 2020-11-28 01:18

Currently Google App Engine supports both Python & Java. Java support is less mature. However, Java seems to have a longer list of libraries and especially support for J

15条回答
  •  时光说笑
    2020-11-28 01:33

    As you've identified, using a JVM doesn't restrict you to using the Java language. A list of JVM languages and links can be found here. However, the Google App Engine does restrict the set of classes you can use from the normal Java SE set, and you will want to investigate if any of these implementations can be used on the app engine.

    EDIT: I see you've found such a list

    I can't comment on the performance of Python. However, the JVM is a very powerful platform performance-wise, given its ability to dynamically compile and optimise code during the run time.

    Ultimately performance will depend on what your application does, and how you code it. In the absence of further info, I think it's not possible to give any more pointers in this area.

提交回复
热议问题