Go学习笔记(一)

软件安装

# go get -u github.com/golang/protobuf/{proto,protoc-gen-go}
# go get -u google.golang.org/grpc

生成protoc

# git clone https://github.com/google/protobuf.git
# git checkout v3.4.1
### 下面的命令在 Developer Command Prompt for VS2012 命令行执行
# cd D:\Project\protobuf\cmake\
# mkdir build
# cd build
# cmake -Dprotobuf_BUILD_TESTS=OFF ..

使用VS2012打开build目录下的protobuf.sln文件,在protoc上右键->生成,最终生成的protoc.exe位于build的Debug目录下

661136-20180525121636491-761682754.png

向PATH添加protoc.exe路径

661136-20180525121653127-1766113989.png

剩余步骤参考go RPC官方教程

661136-20180525121702974-1452485795.png

原生net/rpc

服务端代码
import (
   "net"
 "net/rpc" "time" "math/rand" "fmt" "strconv")

type Arith int

func (t *Arith) Hello(arg *int, reply *string) error {
   wait := rand.Intn(5)
   time.Sleep(time.Duration(wait) * time.Second)
   *reply = "Answer for " + strconv.Itoa(*arg) + " (" +  strconv.Itoa(wait) + " )"
  return nil
}

func main()  {
   arith := new(Arith)
   rpc.Register(arith)
   l, e := net.Listen("tcp", "127.0.0.1:8000")
   if e != nil {
      fmt.Print("listen error:", e)
   }
   rpc.Accept(l)
}

客户端代码

import (
   "net/rpc"
 "fmt" "time" "strconv" "runtime")

func asyncCall(client *rpc.Client, num int) {
   var reply string
   divCall := client.Go("Arith.Hello", &num, &reply, nil)
   replyCall := <-divCall.Done
   if replyCall.Error != nil {
      fmt.Printf("Call %d failed.", num)
   } else {
      fmt.Println(strconv.Itoa(num), " : ", reply)
   }
}

func main() {
   runtime.GOMAXPROCS(3)

   client, err := rpc.Dial("tcp", "127.0.0.1:8000")
   if err != nil {
      fmt.Print("arith error:", err)
   }
   defer client.Close()

   for i := 0; i < 100; i++ {
      go asyncCall(client, i)
   }
   time.Sleep(20 * time.Second)
}

通过实验发现一个Client连接可以被多个goroutine同时使用,所以并不需要为每个远程调用创建一个Client连接

转载于:https://www.cnblogs.com/silvermagic/p/9087904.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值