Hi all, I am having a hardtime using protobuf when there is no Map
like structures. Say I want to have something like
message MyStructs{
message MyMaps{
required int32 bucket=1;
required int32 id = 2;
required Value value =3;
}
repeated MyMaps map =1;
}
However, the bucket could be the same value for many entries, it would
save a lot of storage if I could do something like
message MyStructs{
message MyMaps{
required int32 id = 2;
required Value value =3;
}
repeated PROTOBUF_MAP<KEY, repeated MyMaps map> =1;
}
--
You received this message because you are subscribed to the Google Groups
"Protocol Buffers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/protobuf?hl=en.