Re: New namespace per session in nREPL

2014-04-18 Thread Arkadiusz Komarzewski
Sean, I'm aware of that, but if I was using this kind of "shared" nrepl server the first thing I would do after connecting is changing namespace to slightly reduce chance of someone messing up with what I'm doing. That's why I thought about creating new namespace for each session. On Thursday,

Re: New namespace per session in nREPL

2014-04-17 Thread Sean Corfield
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? Sean On Apr 17, 2014, at 5:35 AM, Arkadiusz Komarzewski wrote: > I would like to let multiple users use sing

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