gpt4 book ai didi

python - 如何将 thrift 结构传递给 Python 服务器

转载 作者:行者123 更新时间:2023-12-01 01:49:54 24 4
gpt4 key购买 nike

我正在使用 thrift 进行 python 服务器和 java 客户端之间的 rpc 通信。在我的 thrift 处理程序中,我有一个想要传递 thrift 结构的函数。对于基本数据类型传递,我可以直接执行以下操作:

def assignValue(self, variable, value):

但现在我想传递结构而不是变量(字符串类型)。我怎样才能做到这一点?

struct MyStruct { 1:string var1; 2:string var2; }

PS:我是thrift新手,关注thrift官方documentation ,如果有任何其他文件可以提供帮助,请随时传递。谢谢!

最佳答案

这是一个在 Thrift IDL 中传递结构的简单示例:

https://github.com/RandyAbernethy/ThriftBook/blob/master/part1/arch/halibut.thrift

struct Date {
1: i16 year
2: i16 month
3: i16 day
}

service HalibutTracking {
i32 get_catch_in_pounds_today()
i32 get_catch_in_pounds_by_date(1: Date dt, 2: double tm)
}

这里有一个 Java 客户端和服务器示例:

https://github.com/RandyAbernethy/ThriftBook/tree/master/part3/ws/thrift

它显示返回一个结构(但传递一个结构很容易推断)。 ThriftBook 存储库中还有许多 Python 和 Java 版本的示例(全部来自《Apache Thrift 程序员指南》):

示例结构返回 thrift idl 如下所示:

struct TradeReport {
1: string symbol,
2: double price,
3: i32 size,
4: i32 seq_num
}

service TradeHistory {
TradeReport get_last_sale(1: string Symbol)
}

list 中的 Java 客户端如下所示:

import java.io.IOException;
import org.apache.thrift.TException;
import org.apache.thrift.transport.TSocket;
import org.apache.thrift.protocol.TBinaryProtocol;

public class ThriftClient {
public static void main(String[] args)
throws IOException, TException {
TSocket trans = new TSocket("localhost", 9090);
TBinaryProtocol proto = new TBinaryProtocol(trans);
TradeHistory.Client client = new TradeHistory.Client(proto);

trans.open();
for (int i = 0; i < 1000000; i++) {
TradeReport tr = client.get_last_sale("APPL");
}
trans.close();
}
}

其他 IDL 示例在这里(包括几个传递结构的示例):

https://github.com/RandyAbernethy/ThriftBook/tree/master/part2/IDL

关于python - 如何将 thrift 结构传递给 Python 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50832190/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com