>Also, you should really give Go a try. It's amazing how fast you can process data (including images) comparing to Python >or Java. Plus, your loading requests will be 10x faster. Obviously, RPC calls to App Engine services will be the same though.
We profiled GO, a lot of our most CPU intensive things are C Libraries and those things are actually faster in Py than Go. RegEx for example is a LOT faster in Py than Go. Because GO lacks these banks of highly optimized code it just can't keep up. The Proxy I wrote in GO was generally faster. And Exploded less often on Unicode. But when I put in all the regex code and HTML normalization/compression it was not. General string manipulation is faster in Go if you are just trying to shuffle things, but If you are using Regex, Go is slower. If you are doing NumPy type functions GO is slower. If you are doing LXML/Beautiful Soup type things GO is slower. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
