Re: Does Ignite support GPB serialized data

2018-10-10 Thread Michael Fong
Very clear answer. Thank you. On Mon, Oct 8, 2018 at 4:18 PM Ilya Kasnacheev wrote: > Hello! > > 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

Re: Does Ignite support GPB serialized data

2018-10-08 Thread Ilya Kasnacheev
Hello! 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

Does Ignite support GPB serialized data

2018-10-03 Thread Michael Fong
Hi, all We have protocol buffer serialized binary data that would like to stored into ignite, and wonder if Ignite supports gpb serialization out of the box? If not, which serialization interface do we need to implement to customize and override in the xml? Thanks in advance