I just want to say that I'm so glad people are developing concurrent languages. The day that concurrency became of paramount importance to computing, all of the old languages became obsolete! That's also why we have Go; goroutines are a major innovation upon threads.
Modula-2 already had co-routines in 1978. Concurrent Pascal had them in 1976. And there are plenty of other examples gaining digital dust.
Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
11–20 of 24 posts
Re: Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
#12I just want to say that I'm so glad people are developing concurrent languages. The day that concurrency became of paramount importance to computing, all of the old languages became obsolete! That's also why we have Go; goroutines are a major innovation upon threads.
> goroutines are a major innovation upon threads.
Not exactly, Erlang has had them for almost three decades.Re: Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
#13I just want to say that I'm so glad people are developing concurrent languages. The day that concurrency became of paramount importance to computing, all of the old languages became obsolete! That's also why we have Go; goroutines are a major innovation upon threads.
> goroutines are a major innovation upon threads. Not exactly, Erlang has had them for almost three decades.
Re: Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
#14Earlier quoted context omitted.
Modula-2 already had co-routines in 1978. Concurrent Pascal had them in 1976. And there are plenty of other examples gaining digital dust.
Concurrent pascal didn't allow unsafe concurrent access to shared data structures. Go allows safe concurrent access but doesn't stop such access. Its authors encourage people to use channels but this sharing is intrinsic -- one can start a nested function as a concurrent goroutine & it has full concurrent access to its environment. Go tools can check for race conditions but ideally such support should be in the langu…
Re: Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
#15Earlier quoted context omitted.
Concurrent pascal didn't allow unsafe concurrent access to shared data structures. Go allows safe concurrent access but doesn't stop such access. Its authors encourage people to use channels but this sharing is intrinsic -- one can start a nested function as a concurrent goroutine & it has full concurrent access to its environment. Go tools can check for race conditions but ideally such support should be in the langu…
allows and doesn't stop are the same thing.
Re: Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
#16Earlier quoted context omitted.
allows and doesn't stop are the same thing.
Maybe OP means "allows safe concurrent access but doesn't stop unsafe concurrent access".
Meant to write "Go allows safe concurrent access but doesn't stop unsafe concurrent access to shared data structures"
Thanks & sorry for the confusion.
Re: Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
#17Re: Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
#18Earlier quoted context omitted.
allows and doesn't stop are the same thing.
Maybe OP means "allows safe concurrent access but doesn't stop unsafe concurrent access".
Most lang/system capability models (including Go's) are open from the start -- where anyone can do anything -- and then when designing the lang/system you try to restrict access between some things at some of the time, but this gets messy fast and it's hard to get right and thus it's almost never optimal.
So rather than trying to start with an open model that's inherently flawed by definition, Pony flips the model on its head and begins from the perspective that everything is denied unless specified. You would say Pony has a deny-first capabilities model, which you can see explicitly defined here in Pony's capabilities matrix...
https://soyyomakesgames.wordpress.com/2016/10/10/ponys-capab...
And if you listen to Sylvan's talks, he is emphatic that solving the capabilities problem upfront was key that made everything else possible. All the other cool stuff you hear about in Pony like the provably correct runtime and finally achieving something approaching Hewitt's elusive Actor model that's been theoretically true for 40 years but never fully realized. Well the key to solving that mystery and unlocking the door was to take a new view on the capabilities model and building everything off that from the start.
Re: Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
#19I just want to say that I'm so glad people are developing concurrent languages. The day that concurrency became of paramount importance to computing, all of the old languages became obsolete! That's also why we have Go; goroutines are a major innovation upon threads.
Re: Channels, Concurrency, Cores: A New Concurrent ML Implementation (2017) [video]
#20I just want to say that I'm so glad people are developing concurrent languages. The day that concurrency became of paramount importance to computing, all of the old languages became obsolete! That's also why we have Go; goroutines are a major innovation upon threads.
Arguably, new styles of programming are making concurrency less important. You won't always need a concurrent language when you can spin up a thousand instances of your function on platforms like AWS Lambda etc.