Reputation: 25954
According to this:
https://docs.datastax.com/en/cql/3.0/cql/cql_using/use_collections_c.html
An item in a list can be max 64k.
Also it states that you can have 64k items in a list.
Upvotes: 4
Views: 771
Reputation: 644
It means you'll have max 65536 items in a collection. And each item in your collection won't be greater than 65536.
Upvotes: 4