6 ms·
I've been experimenting with GO and I really like it, especially since I come from a C/C++ background. Does anyone know of any good GO packages? I wanted to us
by langsamer 15y ago
I've been experimenting with GO and I really like it, especially since I come from a C/C++ background. Does anyone know of any good GO packages?
I wanted to use the experimental support for GO in google app engine but it seems fairly limited...at least for the time being.
- BarkMore 15y agoIt looks like a lot of App Engine functionality is available. What's missing?
- 4ad 15y agoIndeed, it's almost on par with the the other runtimes. Remember that the Google thanksgiving doodle was written in Go and ran on standard App Engine infrastructure.
- langsamer 15y agoI think GO is still experimental in app engine and doesn't support some services like OAuth, Google Cloud Storage, and XMPP. Also, "experimental" scares me for production use.
- omellet 15y agoI'm writing an AppEngine app in Go right now. It uses the same datastore as Python and Java, as well as OAuth and JavaScript Channels. Iterating with the development server is a pleasure, since it compiles everything in the background as you work.
- langsamer 15y agoHave you tried releasing it for production use? I would love to hear how it is working out for you. Are there any frameworks?