Reputation: 33
I want to store large amount of data in a protobuf format in which include time-stamp parameter. And I want to retrieve the data based on the time-stamp value. Thanks.
Upvotes: 0
Views: 328
Reputation: 45171
Protobuf is a sequential-access format. There's no way to jump into the middle of a message looking for data; you have to parse through the whole thing.
Some options:
Upvotes: 1