I recently use php thrift client to call some service implemented by java thrift server.
But I found that when I transfer a large amount of complex data, php spent a lot of time serialize and deserialize data because of tens of thousands of TBinaryProtocol::readXXX()
or TBinaryProtocol::writeXXX()
calls.
Any good idea to optimize this?