subzero
subzero copied to clipboard
Option to use FQCN serialization
Kryo has a useful option to serialize objects together with its FQCN (fully qualified class name) so you don't need to register all classes you want to serialize. It could be configured using Kryo.setRegistrationRequired(false) Is there a way to configure this in SubZero? Also, is there a way to configure SubZero to use CompatibleFieldSerializer? Thanks in advance!
@vlasenkoandrey Hi Andrey, did you found the way to configure SubZero with CompatibleFieldSerializer?
@zoza @vlasenkoandrey @jerrinot I also want to know how to configure CompatibleFieldSerializer
@loudywen, @zoza: just add defaultSerializer=CompatibleFieldSerializer
into your subzero-serializers.properties
file.