We have a fairly big protobuf (~37MB). Here is the breakup of times:

Serializing proto to binary std::string  ~= 110ms
Serializing proto to json std::string     ~= 4200ms (size ~ 115MB)


Parsing from binary std::string           ~= 700ms

Parsing from json std::string              ~= 35 mins !!!!!


In comparison,

Parsing same json using rapidjson   ~= 800ms


Code I used to serialize and parse:


std::string json;

google::protobuf::util::JsonStringToMessage(json, &proto);


std::string json;

google::protobuf::util::MessageToJsonString(proto, &json);


Surely this is a not as expected right?


-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to protobuf+unsubscr...@googlegroups.com.
To post to this group, send email to protobuf@googlegroups.com.
Visit this group at https://groups.google.com/group/protobuf.
For more options, visit https://groups.google.com/d/optout.

Reply via email to