When and where d开发者_开发问答o you put type annotations in Clojure code? Obviously when performance counts. But are there rules by which you can live of when (only when doing Java Interop?) and wher
I suspect that calls from separate threads (>15) are having a negative effect on performance.Is there a better开发者_如何学运维 way to get at the system time in concurrent applications?If it really is
I am working on a MUD开发者_运维知识库 client written in Clojure. Right now, I need two different threads. One which receives input from the user and sends it out to the MUD (via a simple Socket), and
I am looking for something that will make it easy to run (correctly coded) embarrassi开发者_开发问答ngly parallel JVM code on a cluster (so that I can use Clojure + Incanter).
I\'d like to be able to define lambdas using common Lisp syntax, in Clojure. For example: (lambda (myarg)
Update As suggested by many people, it looks like this was because of the fact that clojure code was first compiled and then executed. AOT compilation should help offset that. Given I found the pract
Given 开发者_如何学JAVAa list of names for variables, I want to set those variables to an expression.
I\'d like to get a colored REPL for clojure code, similar to what you can do with IRB for Ruby. Are there any libraries or settings f开发者_开发技巧or user.clj that provide automatic coloring of the R
Below roundtrip produc开发者_JAVA百科es invaild xml as the result is not escaped correctly, i.e. the attribute values contain \' instead of apos;. Am I doing somthing wrong or is this a bug?
In c开发者_如何学编程lojure, keywords evaluate to themselves, e.g.: >>:test :test They don\'t take any parameters, and they aren\'t bound to anything.Why then, would we need to qualify keywor