Hello! I’m a Go developer that has been programming on it for many years. I’m very comfortable with the language, including the bad parts. Is a tradeoff that I accepted and I understood the guidelines that I have to follow to build robust software. I did programmed in other languages before Go, but it was with Go that I had for the first time the felling that I actually “cracked the code” and I was able to do anything I wanted with it, specially concurrent applications. It’s such a joy to work with non blocking IO by default, goroutines, select, and the race detector.
But, the company that I’m working for has decided to migrate to Scala. Long story short, it was a decision coming from the CTO and from this moment on, everything related to backend should be in Scala. At first I thought that it was ok, but I never had to learn anything more difficult than Scala in my life. The cognitive load is unbearable. I understand the point of being “scalable” but there is just way too many ways to do the same operation, which is the absolute opposite of Go.
The fragmentation of the stack doesn’t help as well. We have services in Play, others in Akka HTTP, then some in http4s. We also have mixed with these services cats and scalaz.
I’m trying to get some feedback from folks that have worked with Go and Scala. These are the questions that I have:
- Did you migrated from Go to Scala? Or work directly with Go. If yes, how it was your experience? Do you miss Go?
- Should I go with Scala 3 or 2? The future is 3 for sure, but most of the services are on 2. If I learn 3, can I still work on 2?
- What is your suggestion to get the language as quick as possible? I’m reading Odersky book right now. I’m on 1/3 of it. Any other suggestions? Books, trainings, videos?
- How do you feel about the future of Scala? Scala is such a niche language right now and the constant flux of changes in the language is not helping (from my point of view). I don’t want to put so much effort to a language that if I quit my current position I’ll not find another one to work on.
For a moment I thought that the FP concepts were the difficult part, but I’ve been doing Elixir for some time and it’s easy. It’s way closer to Go than it is to Scala in terms of easy of usage. Maybe the issue is the FP + very strong type system.
I don’t know if I’m just too dumb to learn Scala, if Go broke my brain, or if this is normal and others have been through the same situation. But at the same time I feel blessed because many would want to be in a position that I’m right now and don’t have the opportunity. I just don’t want to give up too quickly on Scala, even though this is my deepest desire right now.
Thanks for the help!