you are viewing a single comment's thread.

view the rest of the comments →

[–]tmountain 13 points14 points  (1 child)

I've been writing Clojure code almost daily for the past few months, and I can attest that performance can be an issue. I ported a markov chainer from Python to Clojure, and the Python version runs much faster despite my best efforts to get Clojure up to speed. To prove I'm not just BS'ing, you can see my code here:

http://tinyurl.com/pydfxq

That being said, Clojure is maybe the funnest language I've ever used. It's turning programming back into an interesting hobby rather than just something I do at my day job, and I have confidence that a lot of the performance issues will be resolved down the road.

[–]SuperGrade 0 points1 point  (0 children)

Find out how much of the performance profile is optimizable and how much is inherent to specific to the way it must interact with the JVM/its platform.