Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/logging/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Logging 是否有节俭文本表示法?_Logging_Serialization_Protocol Buffers_Thrift - Fatal编程技术网

Logging 是否有节俭文本表示法?

Logging 是否有节俭文本表示法?,logging,serialization,protocol-buffers,thrift,Logging,Serialization,Protocol Buffers,Thrift,有没有像protobuf一样的“标准”文本表示法?(http://code.google.com/apis/protocolbuffers/docs/reference/cpp/google.protobuf.text_format.html) 这只是为了调试目的,我假设想要将二进制消息翻译成文本等价物的人可以访问节俭定义文件。找到了我自己问题的一个可能答案。Thrift支持一个基本“协议”,它以JSON格式序列化结构 在C#中,作为TJSONProtocol从TProtocol下降而出现(ht

有没有像protobuf一样的“标准”文本表示法?(http://code.google.com/apis/protocolbuffers/docs/reference/cpp/google.protobuf.text_format.html)


这只是为了调试目的,我假设想要将二进制消息翻译成文本等价物的人可以访问节俭定义文件。

找到了我自己问题的一个可能答案。Thrift支持一个基本“协议”,它以JSON格式序列化结构

在C#中,作为TJSONProtocol从TProtocol下降而出现(http://svn.apache.org/repos/asf/thrift/tags/thrift-0.5.0/lib/csharp/src/Protocol/TJSONProtocol.cs). 我还没有检查过所有的,但是至少java和C++实现也是可用的。