Reported by straszheimjeffrey, Jan 30, 2009
I mentioned this on Google Groups.
Currently the core Clojure datatypes are not Java Serializable. This means
that they cannot easily be streamed as binary objects. Also, it will be
difficult to use them with certain Java features like RMI.
Comment 1 by rob.nikander, Mar 11, 2009
I voted for this because I'm experimenting with using Clojure for web apps. Tomcat barfs trying to serialize
objects in the session, like clojure.lang.Cons.
Comment 2 by cjkent, Mar 25, 2009
I'm experimenting with Clojure and Wicket. Any Wicket page classes containing maps
that use Keywords as keys can't be saved to the session because Keyword isn't
serializable.