Uzi Landsmann
09/05/2018, 1:41 PMjava.util.List
with kotlin.collections.List
and were surprised to find that the Kotlin serialization took twice the time. The theory is that Jackson serializes to a Java list, and then Kotlin converts it to a Kotlin list. If that is true, then it would be worth the time experimenting with native Kotlin serializers.diesieben07
09/05/2018, 1:42 PMkotlin.collections.List
is java.util.List
from a Java standpoint.gildor
09/05/2018, 1:49 PM