Hello,
I need some help in reading CQL3 Collection type values while getting a
callback to the Custom Secondary Index.
Column Family:
CREATE TABLE IF NOT EXISTS test1(
id text,
mymap map<text,text>,
PRIMARY KEY(id)
)
Added value:
Insert into test(id, mymap) values ('1', {'1':'value1'});
Then in my custom class I am trying to read mymap Cell.value() and
deserialize the ByteBuffervalue to get the full map content.
But I am not getting the values as persisted in the mymap Column within
Cassandra.
Is there anyone who can help?
Regards,
Arindam Bose