Hello All,
I have just recently started using Ignite, and I am really enjoying it, I am
trying to profile the size of some objects and compare it with other types
of serializations, is it possible to use the serialization without starting
a Ignite process? The only way I could do it was:

       IgniteConfiguration cfg = new IgniteConfiguration();
        Ignite ignite = Ignition.start(cfg);
        Entity entity = Entity
                .build()
                .withId("12345")
                .withField("value field")
                .withOtherField(33)
                .build();
        BinaryObject binaryObject = ignite.binary().toBinary(entity);

Also, Is there a utility to convert the BinaryObject to byte[] ou should I
just treat it like any other object?

Thanks !!



--
View this message in context: 
http://apache-ignite-users.70518.x6.nabble.com/Working-Directly-with-Binary-objects-tp5131.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.

Reply via email to