How do I post a JSON object into a CQL map column?
New with Cassandra, i would like to store some datas in a table with UDT. So i create a UDT with a map column : CREATE TYPE IF NOT EXISTS test.lifestyle ( name text, values map<timestamp, int> ); Then i…