Re: New namespace per session in nREPL

2014-04-18 Thread Arkadiusz Komarzewski
ach session. On Thursday, 17 April 2014 19:40:13 UTC+2, Sean Corfield wrote: > > Since they can move into any namespace they want and they're all sharing > the same running JVM context, I'm not sure what separate namespaces buys... > Can you elaborate on your use case? >

New namespace per session in nREPL

2014-04-17 Thread Arkadiusz Komarzewski
Hello, I would like to let multiple users use single nrepl server. One problem I noticed is that after connecting you are by default put in 'user' namespace. I am looking for a way to configure nrepl server in a way it will assign new namespace (let's say random-generated) for each session. Ar

Re: Keyword equality check

2014-02-13 Thread Arkadiusz Komarzewski
> >> On Wednesday, February 12, 2014 10:45:38 AM UTC-6, Jozef Wagner wrote: >>> >>> Interning table uses keyword's symbol as a key, and the symbols are >>> compared by value. See >>> https://github.com/clojure/clojure/blob/master/src/jvm/clojure/lang/Key

Keyword equality check

2014-02-12 Thread Arkadiusz Komarzewski
Hi, I wonder how is equality of keywords implemented in Clojure? I have this piece of Java code executed in one classloader: Keyword a = (Keyword) RT.var("clojure.core", "keyword").invoke("keyword"); Then, when I pass it to another part of my application (which uses another classloader) and do