Usually it's more about the algorithm than the language. Java can generally do things faster than clojure, simply because it has fewer layers, but the speedup is a linear factor. If the java solution for 1000 elements takes 5ms and your clojure code takes even a second, it's likely that clojure isn't to blame. Maybe you could post one of your solutions, or simply compare it to a java solution yourself?
On Nov 2, 10:32 am, Dan Kefford <[email protected]> wrote: > Hello fellow clojurians... > > I've been using Clojure now fairly regularly for the past two months > solving problems on Project Euler. I've been fairly successful solving > them but there are times where the performance of my code either > stinks (the answer may come back in 5-10 minutes) or not at all even > though I have effectively solved the problem (the code is correct and > will return the answer for n < 1000 but for n < 10^8... forget about > it.) > > My question is: are there any materials out there on how to optimize > performance of Clojure code? There doesn't seem to be a lot out there. > > Thanks in advance, > > dan kefford -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
