Sorry to take so long to chime in! A couple things occurred to me that you might want to consider:
1. App Engine is addressed primarily towards building web sites and services, not heavy back end processing. That doesn't mean it can't be made to work, but you might want to consider building your site with App Engine and implementing the string processing portion as a service using Google Compute Engine or whatever platform seems best suited. One advantage is that you'd be able to keep your code in C++. 2. Have you measured the rate of your string processing and compared it to the overall response required by your application? In my experience a typical App Engine application's processing time is overwhelmed by network and datastore latency. On Wednesday, July 23, 2014 11:04:26 AM UTC-4, Olivier Austina wrote: > > Thank you Vinny, I am about runtime speed. I have a code in C++ and I > would like to run the program in App Engine. I am wondering which language > is fast in app engine in terms of execution time. > Regards > Olivier > > Le mardi 22 juillet 2014 22:34:53 UTC+2, Olivier Austina a écrit : >> >> >> Hi All, >> >> I am interested in speed in developing application (mainly string >> manipulation) for app engine. Which language is speed java or python. In >> general what should I do to save more time. Any suggestion is welcome. >> >> Regards >> Olivier >> > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
