Google Protocol Buffer Version - 3.5.x

Usage - Sharing the serialised data between different processes

Issue - A google::protobuf::message is serialsed with dynamic allocation 
using message::New() and after serialisation it is deleted using 
message::Clear(). This function is not reducing the memory usage of the 
process.

>From the link 
"https://developers.google.com/protocol-buffers/docs/reference/cpp/google.protobuf.common";,
 
its found that the memory allocated is taken as static data and it will be 
cleared using shutdownprotobuflibrary() while the process is getting 
terminated.But we have a requirement where in we cant terminate our process.

What is the alternative to this deletion?

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/protobuf/40dfedd1-15ff-44f0-ac3f-91cc51c49928%40googlegroups.com.

Reply via email to