
golang
文章平均质量分 65
三少GG
解决一些遇到的小麻烦
展开
-
Golang通过Thrift框架完美实现跨语言调用
每种语言都有自己最擅长的领域,Golang 最适合的领域就是服务器端程序。 做为服务器端程序,需要考虑性能同时也要考虑与各种语言之间方便的通讯。采用http协议简单,但性能不高。采用TCP通讯,则需要考虑封包、解包、粘包等等很多因素,而且想写个高效的TCP服务,也很难。 其实,对于此类需求,采用RPC(Remote Procedure Call Protocol)编程最靠谱。使用 RP原创 2015-08-26 17:40:03 · 6506 阅读 · 0 评论 -
用Supervisor 守护Golang 应用进程的配置示例
Supervisor 可以监控服务器的进程,并在出现问题是自动重启。用Supervisor 来守护Golang 应用进程是不错的选择。下面是一份用Supervisor 守护Golang 应用进程的配置:[program:yourapp]command=/home/yourappuser/bin/yourapp # the location of your appautostart=原创 2015-12-22 00:55:27 · 4846 阅读 · 0 评论 -
Go语言学习
1.https://gobyexample.com/原创 2015-12-22 21:02:01 · 658 阅读 · 0 评论 -
Rest API规范
理解RESTful架构 http://www.ruanyifeng.com/blog/2011/09/restful.html作者: 阮一峰日期: 2011年9月12日div class="asset-body"越来越多的人开始意识到,网站即软件,而且是一种新型的软件。/div div id="more" class="asset-more"这种"互联网软件原创 2015-12-06 11:44:47 · 10175 阅读 · 0 评论 -
golang time.time相关
JSON does not define any representation for encoding date/time information. It *appears* that people tend to use ISO-8601 for them [1]. May be that's what Go does. Note that the documentatio原创 2016-01-13 16:07:59 · 952 阅读 · 0 评论 -
redigo长连接/复用
https://github.com/garyburd/redigo/issues/104原创 2016-02-01 00:56:44 · 5192 阅读 · 0 评论 -
如何在 Go 语言中使用 Redis 连接池-Radix.v2
一、关于连接池一个数据库服务器只拥有有限的资源,并且如果你没有充分使用这些资源,你可以通过使用更多的连接来提高吞吐量。一旦所有的资源都在使用,那么你就不能通过增加更多的连接来提高吞吐量。事实上,吞吐量在连接负载较大时就开始下降了。通常可以通过限制与可用的资源相匹配的数据库连接的数量来提高延迟和吞吐量。如果不使用连接池,那么,每次传输数据,我们都需要进行创建连接,收发数据,关闭连转载 2016-02-20 14:45:57 · 3537 阅读 · 0 评论 -
golang代码案例
1.网络mgonsqetcdconsul原创 2017-05-14 12:00:51 · 1751 阅读 · 1 评论 -
grpc类型与struct的转换
https://www.reddit.com/r/golang/comments/4p9i51/looking_for_a_reverse_protobuf_compiler_to/如何解决:1. 手动双向转换2. kubernates单向工具:https://github.com/kubernetes/kubernetes/tree/master/cmd/libs原创 2017-05-30 18:40:10 · 3127 阅读 · 0 评论 -
重试机制
http://docs.aws.amazon.com/general/latest/gr/api-retries.htmlError Retries and Exponential Backoff in AWSNumerous components on a network, such as DNS servers, switches, load balancers, an原创 2017-08-06 14:25:23 · 1786 阅读 · 0 评论 -
mgo使用指南-高级篇(长连接/重连)
Keeping an mgo (any other db engine) connection aliveI have yet to write a service that would keep a connection alive and handle reconnecting. What's the best practice for this in Go and mgo原创 2016-01-16 14:59:29 · 8005 阅读 · 1 评论 -
rest+go+mongodb
Building a REST Service with Golang - Part 3 (Adding a Backend)http://stevenwhite.com/building-a-rest-service-with-golang-3/How to implement JSON-API standard in MongoDB and Go https://w原创 2015-12-25 12:43:12 · 1044 阅读 · 0 评论 -
ioutils.ReadAll()会清空对应的reader
Reading from a bytes.Buffer drains or consumes the bytes that were read. This means if you try to read again those will not be returned.Buffer.Bytes() returns the unread portion of the buffer原创 2015-12-28 21:19:33 · 3248 阅读 · 0 评论 -
Go Reflect
最近在看一些go语言标准库以及第三方库的源码时,发现go的reflect被大量使用,虽然反射的机制大多数语言都支持,但好像都没有go一样这么依赖反射的特性。个人觉得,reflect使用如此频繁的一个重要原因离不开go的另一个特性,空接口interface{},reflect配合空接口,让原本是静态类型的go具备了很多动态类型语言的特征。 另外,虽然反射大大增加了go语言的灵活性,但要完全掌握它转载 2015-12-28 22:56:47 · 1515 阅读 · 0 评论 -
利用reflect设置struct的字段
参考golang反射三大规则reflect.Value区分CanSet和Can not Set的, 所以, 必须要返回成Can set的reflect.Value如:s := reflect.ValueOf(&t).Elem()然后就可以happy的设值了, 可是不能随便设值的, 一个通用的方法就是使用Set(v Value)方法, 所以之前必须将值转成reflect.V原创 2015-12-29 00:00:27 · 7408 阅读 · 0 评论 -
golang 动态 实例化 结构体
1. https://www.socketloop.com/tutorials/golang-fix-type-interface-has-no-field-or-no-methods-and-type-assertions-exampleGolang : Fix type interface{} has no field or no methods and type asser原创 2015-12-27 16:19:17 · 13245 阅读 · 0 评论 -
go语言string、int、int64互相转换
#string到intint,err:=strconv.Atoi(string)#string到int64int64, err := strconv.ParseInt(string, 10, 64)#int到stringstring:=strconv.Itoa(int)#int64到stringstring:=strconv.FormatInt(int64,10)原创 2015-12-30 11:29:55 · 295843 阅读 · 1 评论 -
mgo使用指南
https://godoc.org/labix.org/v2/mgomgo使用指南mgo简介mgo(音mango)是MongoDB的Go语言驱动,它用基于Go语法的简单API实现了丰富的特性,并经过良好测试。官方网站:http://labix.org/mgo。golang.tc(golangtc.com)网站的数据存储就是是用的MongoDB转载 2015-12-30 11:37:35 · 7118 阅读 · 0 评论 -
golang database 全局
重要的前提条件:type DBtype DB struct { // contains filtered or unexported fields}DB is a database handle representing a pool of zero or more underlying connections.It's safe for conc原创 2016-01-02 22:24:36 · 2031 阅读 · 0 评论 -
golang mysql中timestamp,datetime,int类型的区别与优劣
首先 DATETIM和TIMESTAMP类型所占的存储空间不同,前者8个字节,后者4个字节,这样造成的后果是两者能表示的时间范围不同。前者范围为1000-01-01 00:00:00 ~ 9999-12-31 23:59:59,后者范围为1970-01-01 08:00:01到2038-01-19 11:14:07。所以可以看到TIMESTAMP支持的范围比DATATIME要小,容易出现超出的情况原创 2016-01-02 22:51:18 · 11524 阅读 · 0 评论 -
golang map并发读写
对应报错:fatal error: concurrent map writesfatal error: concurrent map read and map writehttps://wrfly.kfd.me/posts/read-and-write-in-high-concurrency/http://colobu.com/2017/07/11/dive-into-sync-Map/https...原创 2018-07-11 21:06:46 · 1693 阅读 · 0 评论