The one thing I really miss from Clojure, however, is the destructuring bind. I'd love it if someone smarter than me could opine on how hard it would be to extend Racket with destructuring bind...
One of the advantages and curses of the Racket community is that it comes out of academia rather than business like Clojure. The benefit is that it has good documentation and someone somewhere is writing or has written a thesis about just about anything based on Racket. The downside is that Racket is many things to many people and there is no canonical source like Rich Hickey or Linus.
I'm not smarter - Hell, I don't even know what a destructuring bind is. But [it is the internet after all] maybe you want
(match...)
http://docs.racket-lang.org/reference/match.html?q=match&q=r...Anyway, There's always IRC.
I just started using Datomic for a little project. The performance implications of the order of the data patterns matters a lot. It's not a minor performance consideration when swapping two patterns results in having a full cartesian product of two moderately large fact sets stored in memory. You fill up your heap and wait a long time to just get an OOM error. Very quickly, you realize that you need to think about how the query engine will deal with your request.
It seemed strange to me to dismiss this when it's something that I had to face on day 1.