对 Thrift 感到困惑,它到底有什么作用?

发布于 2024-11-20 00:35:01 字数 227 浏览 4 评论 0原文

有人可以向我解释节俭的真正含义吗?

假设我有一个 Rails 应用程序,并且我还有一些用 Scala 编写的代码。

是否可以使用 thrift 为我的 Scala 代码生成一个接口,以便我可以从 Ruby 调用它?

是否必须将 Scala 代码编写为守护进程才能使其工作?

我不太确定 Thrift 的工作是什么,除了它用于在各种语言之间进行链接之外。它通过套接字进行通信吗?

Can someone explain to me what thrift really does?

Say i have a Rails app, and I also have some code written in Scala.

Could thrift be used to generate an interface for my Scala code so that I could call it from Ruby?

Would the Scala code have to be written as a daemon for this to work?

I'm not really sure what Thrift's job is, other than it is used to link between various languages. Does it communicate over a socket?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

书信已泛黄 2024-11-27 00:35:01

Thrift 只是一个二进制序列化协议。它是跨语言的,因此您可以在 Scala 中序列化,然后在 Ruby 中反序列化。

然后你必须移动数据,那是另一个故事了。您可以使用文件、直接使用套接字播放、使用服务器等。

Thrift is simply a binary serialization protocol. It is cross-language, so you can serialize in Scala, and then unserialize in Ruby.

Then you have to move the data, that's another story. You can use files, play directly with sockets, use a server, etc.

桃扇骨 2024-11-27 00:35:01

那么它是如何用于跨平台开发的呢?还是没明白!

您的 Ruby 和 Scala 代码可以驻留在运行完全不同操作系统的不同机器上。

So how is this used for cross-platform development? Still not getting it!

Your Ruby and Scala code can reside on different machines running completely different OSes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文