With C++ Apache Thrift library, is it possible to use only Serialization/Deserialization and not use RPC services?
As I understand from this page, it is possible to
In c++ you can use the TFileTransport:
boost::shared_ptr transport(new TFileTransport(filename)); boost::shared_ptr protocol(new TBinaryProtocol(transport)); yourObj.write(protocol.get()); // to write
or
yourObj.read(protocol.get()); // to read