Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Scala survive without corporate backing?

I was wondering whether Scala will get the takeup it deserves without explicit corporate backing (I was thinking by Sun/Oracle but I suppose it could be someone else, such as Google).

With Sun's recent decision not to include closures in JDK7, couldn't they put their weight behind Scala as the Java alternative for those wishing to have a more expressive language? After all, it seems to me that they should care most about the JVM, not Java per se. Does anyone think this is likely?

like image 857
oxbow_lakes Avatar asked Jun 21 '09 15:06

oxbow_lakes


People also ask

Why is Scala not popular?

Scala too many times makes you think in terms of code rather than mathematics. Many times I've seen myself just dropping to Wolfram Mathematica and Python. Sometimes I've even stopped translating the prototypes to industrial languages like Java/Scala, Python was good enough for production.

Does anyone use Scala anymore?

Scala is most often used to develop business intelligence/data science/machine learning products, websites, and libraries/frameworks.

Is Scala in decline?

Scala's popularity, on the other hand, is starting to decline, driven by long compile times, non-essential complexity in the language, binary and source compatibility problems, the looming threat of obsolesce that is Dotty, brain drain to the Rust and Haskell communities, and fractures in the Scala community that are ...

Is Scala becoming more popular?

Scala's popularity shot up, becoming the 20th ranked language on the TIOBE index in 2018. Today it is lower, although it is No. 14 on Redmonk. According to Oliver White, chief editor at Lightbend, the company behind Scala, the programming language supports companies with valuations in the hundreds of billions.


2 Answers

Apart from the examples of previous languages that have succeeded without initial corporate backing, I think Microsoft's promotion of functional programming on the .NET platform may indirectly help Scala gain adoption. Since the Java and .NET ecosystems are seen as close rivals, people aware of F# and the functional additions to C# may be inclined to look for JVM analogs, and to me Scala seems best equipped to fill that role.

like image 162
Max Strini Avatar answered Sep 21 '22 02:09

Max Strini


You need to be more specific. Thrive in what context?

I think Scala's community is near the critical mass that it needs to be a self-sustainable open source project even if its primary institutional backer, the EPFL, suddenly had a change of heart; and there is currently every sign that it will reach this critical mass. I think Scala will be with us and actively maintained for a long time.

A more pressing issue if the type of uses for which it is suited. The Scala compiler and standard library are far from perfect. When you start pushing the language or a portion of the library there is still a decent chance that you will find bugs. This is improving by leaps and bounds, but it in itself isn't the core of the problem.

The problem is in order to get fixes you pretty much have to upgrade to the next version of Scala as upgrades come out. The problem with that is that most version upgrades contain breaking changes, thus in order to obtain fixes you are likely to have to change your own code. There's also the binary incompatibility problem, which means all your Scala dependencies have to change versions, too.

This could be severe problem if you have a lot of dependencies on other Scala libraries (unlikely - there aren't many yet), if you are subject to severe infrastructure bureaucracy, or worse, you're a product-oriented company that needs to distribute fixes to customer with severe infrastructure bureaucracy.

In order for Scala to be viable in such situations long-term, someone will have to start back porting fixes to earlier versions so that people don't have to perform breaking upgrades just to get some fixes. I'm sure this will happen, because it really wouldn't be that hard, but it will probably require someone seeing a business opportunity, because let's face it, backporting changes and doing regression testing isn't exactly exiting work.

like image 22
Erik Engbrecht Avatar answered Sep 24 '22 02:09

Erik Engbrecht