Appengine, performance degradation with python27

前端 未结 6 963
天涯浪人
天涯浪人 2021-01-31 10:03

I wanted to test python27 on appengine so I have migrated my app from python25. Performance got more than 2x slower for every request! Then I\'ve returned to python25 and perfor

6条回答
  •  不要未来只要你来
    2021-01-31 10:21

    Did you migrated your application to use WSGI instead of CGI when run on python 2.7?

    It is possible that CGI interface is just a wrapper around WSGI that is enabled for 2.7 now.

提交回复
热议问题