Re: Clojure run time isolation with the ability to share data structures

2014-01-23 Thread Arnout Roemers
Hi Giri, At my company, we also desired multiple, isolated Clojure runtimes in one JVM instance, sharing Clojure data structures/types. So indeed, we also created special ClassLoaders in order to do this. We had the same problem with some data types being tied to the Clojure runtime somehow. Ev

Clojure run time isolation with the ability to share data structures

2014-01-20 Thread Giri Anantharaman
Hello I am newbie to Clojure. Been using for a couple of months now. With that disclaimer out of the way, we have use-cases where we would like multiple clojure run times with in the same JVM and have these run times share clojure data structures among themselves. We attempted to solve this p