10 ms·
Go is still very young. Doesn't make sense to write such a critical piece of software with it quite yet.
by mscottmcbee 13y ago
Go is still very young. Doesn't make sense to write such a critical piece of software with it quite yet.
- devx 13y agoYeah, they probably want to wait until Go 2.0 or something, before they commit Android to supporting Go (and support only 64-bit apps while they're at it, since from what I hear Go handles 64-bit much better than 32-bit anyway). So maybe in 2-3 years. But I do think they should do it eventually, and move away completely from Java, because I think Java is a pain to learn, especially for new programmers who want to make Android apps. Being able to write Go apps for Android could make Android that much more attractive to developers. In the meantime, this transition to ART apps, will be a huge benefit for users, as their apps will run better, especially on lower-end devices, which KitKat also addresses.
- binarycrusader 13y agoGo isn't a panace either, especially when it comes to dealing with OS-level threads and goroutines.
- mortdeus 13y agoGo might be young but the underlying compiler suite is derived from Ken Thompson's c compiler written for plan9 ~25 years ago. Also taking into consideration that the people developing Go have an impressive history of innovation; its not an uncommon by the time somebody actually finishes developing that critical software, for the compilers and runtime to receive vast improvements via new useful diagnostic tools and optimizations.
- nl 13y agoGoogle have some pretty critical software running on Go already (and have for a couple of years now). For example, their MySQL scaling proxy[1] is in Go. [1] https://code.google.com/p/vitess/ https://code.google.com/p/vitess/
- vidarh 13y agoBut it is very different to use something server-side in your own environment where you can deploy updates easily, vs. client side on devices where the wrong kind of bugs can wreak havoc for millions of uses and make updates to fix them extremely much more complicated.