4
votes
2answers
38 views
Scoping rules in Clojure
Even though I have used Clojure, I hadn't looked at the scoping rules in detail. I am getting more confused as I read the documentations.
I made a small test to try out the scoping …
2
votes
0answers
17 views
Clojure equivalent of Erlang’s DETS / Persistent-Maps
I'm looking for the equivalent of Erlangs DETS for a persistent key/value store,
except with out DETS 2G table size limit.
2
votes
3answers
71 views
How does one start a thread in Clojure?
I've read a lot about how great Clojure is when it comes to concurrency, but none of the tutorials I've read actually explain how to create a thread. Do you just do (.start (Thread …
5
votes
2answers
78 views
passing events from erlang to Clojure
I'm looking for a way to pass events back and forth between Clojure and erlang.
has someone done this before?
how should I encode the (immutable) messages in a flaxable general w …
4
votes
1answer
87 views
Clojure: lazy magic
Almost 2 identical programs to generate infinite lazy seqs of randoms.
The first doesn't crash. The second crash with OutOfMemoryError exception. Why?
;Return infinite lazy seque …
2
votes
2answers
128 views
Help translating this Java codeblock to Clojure?
I'm getting my feet wet with Clojure, and trying to get used to functional programming.
I've been translating various imperative functions from other languages into their Clojure …
2
votes
2answers
55 views
How to improve Clojures error messages
I've been playing a bit with Clojure and so far is fairly impressed, but one thing that I keep running into is wierd error messages from Clojure. This comes in two forms: Java erro …
2
votes
4answers
77 views
How to do numerical simulation with immutable data in Clojure?
I'm using Clojure and I need to run a small simulation. I have a vector of length n (n is usually between 10 and 100) that holds values. On each simulation round (maybe 1000 rounds …
3
votes
2answers
57 views
Clojure: How to get meta-data of functions ?
I am trying to get meta-data of all built-in Clojure functions.
In previous question I've learned that this can be achieved using something like ^#'func_name (get the var object's …
4
votes
3answers
98 views
Does anyone know of a good reference for DSL design?
I've been looking into designing some Domain Specific Languages which I will probably implement in Clojure, but I really don't have any idea of what's involved.
The languages I ha …
0
votes
1answer
32 views
remove compile messages from clojure build failure backtraces
I would just love a way to filter out the back-traces from the compilation process and see only the messages from the running of my program.
I'm currently using La Clojure for Inte …
4
votes
1answer
78 views
Will Clojure run on Azure Now?
I saw that Microsoft announced Java support on Azure today at PDC. Does that mean it will be able to run Clojure (and other JVM languages) as well?
3
votes
5answers
224 views
Is functional Clojure or imperative Groovy more readable?
OK, no cheating now.
No, really, take a minute or two and try this out.
What does "positions" do?
Edit: simplified according to cgrand's suggestion.
(defn redux [[current next] …
3
votes
2answers
106 views
Newbie transforming CSV files in Clojure
I'm both new and old to programming -- mostly I just write a lot of small Perl scripts at work. Clojure came out just when I wanted to learn Lisp, so I'm trying to learn Clojure wi …
5
votes
1answer
123 views
Server programming with Clojure
How to implement 10k connections echo server in Clojure?
clojure.contrib.server-socket is not the answer since it crates a new OS thread for every connection.
