Search code examples
ignite

Does Ignite support GPB serialized data


New user to Ignite here.

We have protocol buffer serialized binary data that would like to stored into ignite via memcached binary protocol, and wonder if Ignite supports gpb serialization out of the box?

Thanks in advance!


Solution

  • Cross-posting from userlist:

    Ignite does not have special support for protocol buffers.

    You are welcome to implement Binarylizable or Externalizable interfaces on your objects to specify serialization for them.

    You can also specify BinarySerializer for types that you do not control by putting them into BinaryConfiguration.setTypeConfigurations() and using that one with IgniteConfiguration.