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.
What is the alternative to this deletion?