
编程语言
贫僧法号一枝花
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ubuntu16.04 apt方式安装go语言环境
环境:ubuntu16.04不知道为什么网上那么多ubuntu版的apt安装go语言的教程到我这里就都不能用,索性find / -name go 自己找一下GOROOT,结果发现在GOROOT实际上应该设置为/usr/lib/go-1.6,而安装时默认的GOROOT设置在了~/go,所以不能用,写下来以后再安装的时候回来闭坑1.apt安装gosudo apt install gola...原创 2018-10-26 17:47:18 · 10905 阅读 · 0 评论 -
GRPC基本流程
1.编写protobuf文件定义service及massagesyntax = "proto3"; option objc_class_prefix = "HLW";package helloworld;// The greeting service definition.service Greeter { // Sends a greeting rpc Sa...原创 2018-10-23 11:12:52 · 1280 阅读 · 0 评论