开发者

Confused about Thrift, what does it really do?

开发者 https://www.devze.com 2023-03-19 06:10 出处:网络
Can someone explain to me what thrift really does? Say i have a Rails app, and I also have some code written in Scala.

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 g开发者_StackOverflowenerate 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?


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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消