Is there any way to persist a java object, thrift serialized, and recover it as a .net object, deserializing it?
I have a software, developed with java, which persist many pure objects into cassandra. Now i’d like to build a cassandra client with c# .net in order to provide the common features that exists in a simple pgadmin or mysql workbench(search,update,insert,etc) in a visual system. For this reason, it’d be necessary to deserialize the persisted objects in order to make them alterable.
Is that possible to do it by using thrift serialization?
Problem fixed.
I could make a BytesType column become cross language readable by persisting Thrift Serialized Objects.
At hector issues pagehector issues page I posted my solution to it: