@alexandre.dutra may I ask another question concerning the topic... I am struggling figuring out weather my setup is wrong, my syntax is wrong or if it's just not possible. How can I access nested collections, e.g.
values list<frozen <map<int, int>>>
I tried:
- List<Map<Integer, Integer>> myList = state.getList(5 , Map.class);
Leading to:
- Type mismatch: cannot convert from List<Map> to List<Map<Integer,Integer>>
I tried:
- List<Map<Integer, Integer>> myList = state.getList(5, TypeTokens.mapOf(Integer.class, Integer.class));
Leading to:
- TypeTokens cannot be resolved
I am experimenting with Cassandra 3.11.6 and DSE 6.8.0.
I am kind of desperate here...