I was wondering whether we should add dedicated collection serializers to the Java API, similar as the scala API has them.
The advantage would be not to depend on kryo for that. Kryo becomes quite inefficient when it does not know the element data type (the user did not register it), and we can devise a better collection serializer with our type analysis. For kryo anyways, we should make sure we automatically register all types found through our type analysis.
