If I defined:
message A {
required int32 first = 1;
optional int32 second = 2;
}
The size of space when set_second(0) then serializeToArray() is not same with that when set_second(14353355445) then serializeToArray()
Are there ways to make them have the same size of space ?
In other ways,how can I make optional fields that are not assigned values have the same size of space with just like they were assigned values?