在go语言里使用thrift做远程通讯

ananclub · · 4333 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

一.准备和编写IDL

thrift的介绍和安装见上文

 

thrift支持的数据类型

  基本类型

  • bool: A boolean value (true or false)
  • byte: An 8-bit signed integer
  • i16: A 16-bit signed integer
  • i32: A 32-bit signed integer
  • i64: A 64-bit signed integer
  • double: A 64-bit floating point number
  • string: A text string encoded using UTF-8 encoding

  

  Struct 包含其他数据类型的结构体,与c语言的struct类同

      Containers 容器

    list

    set

    map

  

  

 

  Exceptions 异常

 

  Services 服务,也就是提供给远程调用的方法

 

IDL定义的例子demo.thrift:

//namespace go demo.rpc

service RpcService{ 

   list<string> funCall(1:i64 callTime, 2:string funCode, 3:map<string, string> paramMap),

   }

 IDL文件支持include

注释支持shell和c两种语言的注释方式

#comment

//comment

/*comment*/

二.thrift编译器的使用

thrift --gen go -o rpcgo demo.thrift

--gen参数指定输出语言 -o指定输出目录

go语言有两个额外的参数

    package_prefix= Package prefix for generated files.  

      thrift_import=  Override thrift package import path (default:git.apache.org/thrift.git/lib/go/thrift)

    使用方法

    thrift --gen go:package_prefix=ownprefix,thrift_import=ownthriftpackage -o rpcgo demo.thrift

 

 

参考:Golang通过Thrift框架完美实现跨语言调用


有疑问加站长微信联系(非本文作者)

本文来自:博客园

感谢作者:ananclub

查看原文:在go语言里使用thrift做远程通讯

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

4333 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传