Earlier quoted context omitted.
It is maintained, but not actively. Like the last year there was two issues fixed in it. There isn't someone actively trying to enhance it or add more features to it. So my understanding is only major issues gets addressed.
Which is a quite peculiar and reccurrent pattern in closure. After a while libraries and tools stabilize and the community just maintains it.
Clojure Concurrency Tutorial
11–20 of 43 posts
Re: Clojure Concurrency Tutorial
#12I get to do Clojure about ~60% of the time at work now, and it never ceases to amaze me how much easier it is to deal with concurrency than in vanilla Java. Futures and Promises and core.async don't allow you to totally avoid planning out your project (I've been bitten slightly by core.async's `go` blocks behaving differently than Go's goroutines), but they are a godsend compared to dealing with manual mutexes and se…
What's the difference between core.async go blocks and goroutine please, I thought they would be the same to a reasonable extent?
Re: Clojure Concurrency Tutorial
#13Earlier quoted context omitted.
Which is a quite peculiar and reccurrent pattern in closure. After a while libraries and tools stabilize and the community just maintains it.
Most Clojure libraries I've worked with, even the "larger" ones, are fairly small and concise by modern standards. I wonder if this has something to do with the lack of activity (in addition to being a small community). It feels a bit like the Unix philosophy - lots of small/medium libraries handling discrete problems, rather than many competing mega-frameworks. To me, this feels like a silver lining that comes from…
Re: Clojure Concurrency Tutorial
#14Earlier quoted context omitted.
It is maintained, but not actively. Like the last year there was two issues fixed in it. There isn't someone actively trying to enhance it or add more features to it. So my understanding is only major issues gets addressed.
Which is a quite peculiar and reccurrent pattern in closure. After a while libraries and tools stabilize and the community just maintains it.
Re: Clojure Concurrency Tutorial
#15I get to do Clojure about ~60% of the time at work now, and it never ceases to amaze me how much easier it is to deal with concurrency than in vanilla Java. Futures and Promises and core.async don't allow you to totally avoid planning out your project (I've been bitten slightly by core.async's `go` blocks behaving differently than Go's goroutines), but they are a godsend compared to dealing with manual mutexes and se…
I was reading somewhere that the core.async lib has not been updated in awhile...is this correct? (generally curious if the lib is actively updated)
Re: Clojure Concurrency Tutorial
#16Earlier quoted context omitted.
I was reading somewhere that the core.async lib has not been updated in awhile...is this correct? (generally curious if the lib is actively updated)
Yes. You should consider core Clojure (including everything covered in this article) as a proof of concept that will never be revisited.
Source: Worked as a consultant almost exclusively in Clojure for the past 10 years.
Re: Clojure Concurrency Tutorial
#17Earlier quoted context omitted.
Yes. You should consider core Clojure (including everything covered in this article) as a proof of concept that will never be revisited.
Wow. That will come as quite a surprise to the dozens of Fortune 50 companies out there using it as part of their core systems, let alone all the smaller companies and startups. Source: Worked as a consultant almost exclusively in Clojure for the past 10 years.
Re: Clojure Concurrency Tutorial
#18Earlier quoted context omitted.
Wow. That will come as quite a surprise to the dozens of Fortune 50 companies out there using it as part of their core systems, let alone all the smaller companies and startups. Source: Worked as a consultant almost exclusively in Clojure for the past 10 years.
I, too, have used Clojure as my primary language across three startups and 10 years, and despite my great affection for the language and community, I have told no lies here.
It sounds like you're just salty for some reason. I'm sorry you had a bad experience, but that has no bearing on the usefulness of the language.
Re: Clojure Concurrency Tutorial
#19I get to do Clojure about ~60% of the time at work now, and it never ceases to amaze me how much easier it is to deal with concurrency than in vanilla Java. Futures and Promises and core.async don't allow you to totally avoid planning out your project (I've been bitten slightly by core.async's `go` blocks behaving differently than Go's goroutines), but they are a godsend compared to dealing with manual mutexes and se…
I was reading somewhere that the core.async lib has not been updated in awhile...is this correct? (generally curious if the lib is actively updated)
Far from the truth IME.
Having said that, Clojure is my favorite programming language for writing "business" applications.
Re: Clojure Concurrency Tutorial
#20Earlier quoted context omitted.
I, too, have used Clojure as my primary language across three startups and 10 years, and despite my great affection for the language and community, I have told no lies here.
Clojure is far from perfect. But a lot of people are using it and will continue to use it effectively. It sounds like you're just salty for some reason. I'm sorry you had a bad experience, but that has no bearing on the usefulness of the language.
The difference between Clojure and nearly any other language, however, is that you don't need the core library; you can add any language feature you want due to the awesome macro system in Lisps. Even if they deleted the core library tomorrow, we could still build in literally any language construct we want as a library.
This is why Lisp is made of magic :)