Re: Newbie: General question about concurrency in Clojure

2011-03-09 Thread Nick Wiedenbrueck
Thanks for your answers. Guess, I just got a little bit lost after digging deeper into the whole thing. Just didn't see anymore that the core problem is mutability. But it's much clearer again now. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To po

Newbie: General question about concurrency in Clojure

2011-03-09 Thread Nick Wiedenbrueck
I'm still getting started with Clojure and I'm wondering about how one should generally go about concurrency and how transparent concurrency is in Clojure. So, to me there would be two approaches: A) Be aware of the parts of your system that will be concurrent and only within these parts write con

Re: Newbie: What's your opinion about this Clojure code?

2011-02-13 Thread Nick Wiedenbrueck
Thanks a lot. I'll have to get used to closing all parentheses of a function on a single line, cause this makes finding the right position when editing the code afterwards a little harder. Also now I got the clojure mode for emacs (instead of lisp mode) to get the indentation right. -- You recei

Newbie: What's your opinion about this Clojure code?

2011-02-11 Thread Nick Wiedenbrueck
I'm just starting to get into Clojure. After implementing some examples from various tutorials, I've tried to implement the following simple server application. Now I'd like you to have a look at the code and hear your opinion. What could be improved? What would be a more idiomatic way implement it