作者 |?楊成立(忘籬) 阿里巴巴高級(jí)技術(shù)專家
成都創(chuàng)新互聯(lián)長期為上1000+客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺(tái),與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為新豐企業(yè)提供專業(yè)的網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè),新豐網(wǎng)站改版等技術(shù)服務(wù)。擁有十余年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。關(guān)注“阿里巴巴云原生”公眾號(hào),回復(fù) Go 即可查看清晰知識(shí)大圖!
導(dǎo)讀:從問題本身出發(fā),不局限于 Go 語言,探討服務(wù)器中常常遇到的問題,最后回到 Go 如何解決這些問題,為大家提供 Go 開發(fā)的關(guān)鍵技術(shù)指南。我們將以系列文章的形式推出《Go 開發(fā)的關(guān)鍵技術(shù)指南》,共有 4 篇文章,本文為第 1 篇。
該指南主要討論了服務(wù)器領(lǐng)域常見的并發(fā)問題,也涉及到了工程化相關(guān)的問題,還整理了 C 背景程序員對于 Go 的 GC 以及性能的疑問,探討了 Go 的錯(cuò)誤處理和類型系統(tǒng)最佳實(shí)踐,以及依賴管理的難處、接口設(shè)計(jì)的正交性,當(dāng)然也包含我們在服務(wù)器開發(fā)中對于 Go 實(shí)踐的總結(jié),有時(shí)候也會(huì)對一些有趣的問題做深度的挖掘,列出了 Go 重要的事件和資料集合,以及 Go2 的進(jìn)展和思考。
以下是各個(gè)章節(jié)以及簡介:
The Go Programming Language 到底是該叫 GO 還是 GOLANG?Google 搜?Why Go is called Golang
?能搜到幾篇經(jīng)典帖子。
Rob Pike 在 Twitter 上特意說明是 Go,可以看這個(gè)?The language is called Go:
Neither. The language is called Go, not Golang. http://golang.org ?is just the the web site address, not the name of the language.
在另外一個(gè)地方也說明了是 Go,可以看這個(gè)?The name of our language is go:
The name of our language is Go
Ruby is called Ruby, not Rubylang.
Python is called Python, not Pythonlang.
C is called C, not Clang. No. Wait. That was a bad example.
Go is called Go, not Golang.
Yes, yes, I know all about the searching and meta tags. Sure, whatever,
but that doesn't change the fact that the name of the language is Go.
Thank you for your consideration.
這里舉了各種例子說明為何不加 lang 的后綴,當(dāng)然有個(gè)典型的語言是加的,就是?Erlang
。于是就有回復(fù)說“Erlang Erlang, Let's just call it Er.”
那么為什么大多時(shí)候 Go 和 Golang 都很常用呢?在?Why is the Go programming language usually called Golang?中說的比較清楚:
It’s because “go domain” has been registered by Walt Disney and so Go creators couldn’t use it.
So, they have decided to use golang for the domain name. Then the rest came.
Also, it’s harder to search things on search engines just using the word Go. Although, Rob Pike is
against this idea but I disagree. Most of the time, for the correct results you need to search for
golang.
It’s just Go, not golang but it sticked to it.
講個(gè)笑話先,用百度搜下為何 Go 叫做 Golang,一大片都是類似本文的雞湯煲,告訴你為何 Go 才是天地間最合適你的語言,當(dāng)然本文要成為雞湯煲中的戰(zhàn)斗煲,告訴你全家都應(yīng)該選擇 Go 語言。
為何 Go 語言名字是 Go,但是經(jīng)常說成是 Golang 呢?有以下理由:
為什么在名字上要這么糾結(jié)呢?嗯嗯,不糾結(jié),讓我們開始干雞湯吧。
考慮一個(gè)商用的快速發(fā)展的業(yè)務(wù)后端服務(wù)器,最重要的是什么?當(dāng)然是穩(wěn)定性了,如果崩潰可能會(huì)造成用戶服務(wù)中斷,崩潰的問題在 C/C++ 服務(wù)器中幾乎是必然的:
想象一個(gè) C 服務(wù)器,一般不會(huì)重頭碼所有的代碼,會(huì)從一個(gè)開源版本開始,或者從一些網(wǎng)絡(luò)和線程庫開始,然后不斷改進(jìn)和完善。由于業(yè)務(wù)前期并不復(fù)雜,上線也沒有發(fā)現(xiàn)問題,這時(shí)候可以說 C 服務(wù)器是穩(wěn)定的嗎?當(dāng)然不是,只是 Bug 沒有觸發(fā)而已,所有崩潰的 Bug 幾乎都不是本次發(fā)布導(dǎo)致的。野指針和越界是 C 服務(wù)器中最難搞定的狼人,這些狼人還喜歡玩潛伏。
一般業(yè)務(wù)會(huì)突飛猛進(jìn),特別是越偏上層的業(yè)務(wù),需要后端處理的邏輯就越多,至于 UTest 和測試一般只存在于傳說中,隨著業(yè)務(wù)的發(fā)展,潛伏的狼人越來越多,甚至開源的庫和服務(wù)器中的狼人也開始出來作妖。夜路走多了,總會(huì)碰到鬼,碰到鬼了怎么辦?當(dāng)然是遇鬼殺鬼了,還能被它嚇尿不成,所以就反思解決 Bug,費(fèi)了老勁、又白了幾根頭發(fā),終于迎來短暫安寧,然后繼續(xù)寫 Bug。
空指針問題相對很容易查,除零之類的典型錯(cuò)誤也容易處理。最完善的解決辦法,就是實(shí)現(xiàn) GC,讓指針總是有效,無效后再釋放,越界時(shí)能檢測到,這樣容易解決問題;其實(shí) Go 早期的版本就和這個(gè)很類似了,要實(shí)現(xiàn)帶 GC 的 C 的同學(xué),可以參考下 Go 的實(shí)現(xiàn)。
如何能直接獲取線上的 Profile 數(shù)據(jù),需要程序本身支持。比如提供 HTTP API 能獲取到 Profile 數(shù)據(jù),關(guān)鍵是如何采集這些數(shù)據(jù)。
Go 的使命愿景和價(jià)值觀:
Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
Go is a concurrent open source programming language developed at Google. Combines native compilation and static types with a lightweight dynamic feel. Fast, fun, and productive.>
Go is an attempt to make programmers more productive. The first goal is to make a better language to meet the challenges of scalable concurrency. The larger goal is to make a better environment to meet the challenges of scalable software development, software worked on and used by many people, with limited coordination between them, and maintained for years.
Go 語言的關(guān)鍵字:
參考?The Path to Go1: What is Go??和?Another Go at Language Design。
參考?> Go: a simple programming environment。
Go 是面向軟件工程的語言,Go 在工程上的思考可以讀?Go at Google: Language Design in the Service of Software Engineering?和?Less is exponentially more。Go 最初是解決 Google 遇到的大規(guī)模系統(tǒng)和計(jì)算的問題,這些問題如今被稱為云計(jì)算,參考?Go, Open Source, Community。
GITHUT上顯示 Go 的項(xiàng)目和 PR 一直在上升,如下圖所示。
2014?云計(jì)算行業(yè)中使用 Go 的有:Docker, Kubernetes, Packer, Serf, InfluxDB, Cloud Foundry’s gorouter and CLI, CoreOS’s etcd and fleet, Vitess | YouTube’s tooling for MySQL scaling, Canonical’s Juju (rewritten in Go), Mozilla’s Heka, A Go interface to OpenStack Swift, Heroku’s Force.com and hk CLIs, Apcera’s NATS and gnatsd。
2018?年全球使用 Go 的公司數(shù)目有:US(329), Japan(79), Brazil(52), India(49), Indonesia(45), China(32), UK(32), Germany(28), Israel(24), France(17), Netherlands(16), Canada (15), Thailand(14), Turkey(14), Spain(12), Poland(11), Australia(9), Russia(9), Iran(8), Sweden(7), Korea(South)(6), Switzerland(6), Ukraine(5)。
參考?Go as the emerging language of cloud infrastructure、The RedMonk Programming Language Rankings: June 2018,還有?GoUsers?以及?Success Stories。
參考?> "Go: 90% Perfect, 100% of the time" -bradfitz, 2014。參考?> Nine years of Go: Go Contributors,社區(qū)貢獻(xiàn)的代碼比例。
我們一起看看這些 Go 牛逼的特性,詳細(xì)分析每個(gè)點(diǎn),雖然不能涵蓋所有的點(diǎn),對于常用的 Go 的特性我們做一次探討和分析。
接下來看一下有關(guān) Go 的重要事件:
sort.Slice
?使排序使用更簡單;for
?支持三種迭代寫法;Data Race Detector
?等;點(diǎn)擊下載《不一樣的 雙11 技術(shù):阿里巴巴經(jīng)濟(jì)體云原生實(shí)踐》
本書亮點(diǎn)
“阿里巴巴云原生關(guān)注微服務(wù)、Serverless、容器、Service Mesh 等技術(shù)領(lǐng)域、聚焦云原生流行技術(shù)趨勢、云原生大規(guī)模的落地實(shí)踐,做最懂云原生開發(fā)者的技術(shù)圈。”
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
當(dāng)前標(biāo)題:Go開發(fā)關(guān)鍵技術(shù)指南|為什么你要選擇GO?(內(nèi)含超全知識(shí)大圖)-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://www.rwnh.cn/article8/dcopip.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供面包屑導(dǎo)航、App開發(fā)、品牌網(wǎng)站制作、微信小程序、小程序開發(fā)、網(wǎng)站改版
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容