Re: serlization of map ---- Invalid token: :

2012-08-06 Thread Alan Malloy
You are attempting to serialize the empty keyword. The empty string, "", is fine to store, but : is not. You will get the same error from (read-string ":"). On Monday, August 6, 2012 4:55:23 AM UTC-7, 4m1r wrote: > > I am using Storm which is based on Clojure. while emitting a map which has > k

serlization of map ---- Invalid token: :

2012-08-06 Thread 4m1r
I am using Storm which is based on Clojure. while emitting a map which has keywords as keys we get the following exception. When we have strings as keys we dont get this exception. Sounds like serialization problem. I have also checked the source of LispReader it should have : as a valid token.