5 ms·
What is “enterprise” use? Plenty of enterprises use Go.
by rcme 3y ago
What is “enterprise” use? Plenty of enterprises use Go.
- arein3 3y agoBy enterprise I mean a lot of features related to data consistency, scalability and integrations. I do not know about go ecosystem, but java and spring have mature solutions that cover the most advanced use cases.
- Thaxll 3y agoKubernetes is what I would call very advanced use case. But that's the thing with Java, yes there are libraries for everything and one could see that as a problem actually. Spring was mentioned before, but it's the perfect example of an overengineered/ heavy library that does a lot of black magic.
- bcrosby95 3y agoJava is strange because it can be both verbose and magical at the same time. Just the other day I ran across an issue where spring was wiring things up correctly on Linux but not Windows.
- throwaway2037 3y agoI too dislike dependency injection frameworks. I try to always wire manually myself. I'm tired of debugging old SpringFramework apps where changing the JVM by a patch level or changing one JAR dependency breaks the wiring. I have seen it too many times to count.
- jmauritz 3y agoIf all you have is spring boot, everything looks like a spring boot problem.
- eastbound 3y agoPlus Spring is honestly quite badly programmed. The pagination object is bulky and unnecessarily complex, where a simple offset/limit is enough (and a nextUrl for cursor-based access). When we looked into cluster locks, they’re not even released if one node goes down. I mean, who would need a lock implementation that just stores a line in a DB? And the doc doesn’t even warn about it. Apache contributors were much better-skilled.
- throwaway2037 3y agoApache contributors were much better-skilled. That is quite a broad statement. Two negative points about Apache Java libraries I can think of: The original "lang" libraries have not aged well at all. Also: The HTTP client libs are a fiasco. Very challenging APIs and weak documentation.
- pjmlp 3y agoOriginally prototyped in Java, rewritten in Go when a couple of advocates joined the team.
- pm90 3y agoNot really. Software first enterprises do. But most enterprises that have a non-software focus generally prefer languages that have been around for a while and are known by lots of people.
- cdogl 3y agoI’ve written go code for large corporates in Australia who absolutely did not have a tech or software focus. One was a notoriously bureaucratic company which used to be a government owned enterprise. For the niches it fills well, it’s become almost ubiquitous. With regard to this: > But most enterprises that have a non-software focus generally prefer languages that have been around for a while and are known by lots of people. I know developers who work for large blue chip financial sector and other traditional sectors. They’re on the same React/Vue/Webpack/whatever treadmill as all the frontend devs devs working at web dev agencies. And they’re often compiling it down from TypeScript, which has not been around for a very long while at all and is not known by lots of people (relative to the size of the JS community. Swinging a bit of Go for a service in an environment like that isn’t really that hard.
- anoy8888 3y agoWow
- winrid 3y agoThe programmers don't make that call. The CTO does, so they can hire anyone.
- housemusicfan 3y agoBy enterprise he means non-webshit industry.