GO 協程 通道執行個體以及驗證SnowFlake演算法

來源:互聯網
上載者:User

標籤:ola   協程   err   ++   div   with   highlight   ==   pre   

最近項目中使用了SnowFlake演算法產生ID,並在實際運行環境下會產生重複ID,所以寫了一個Go的程式進行驗證,順便也練習一下Go的協程與通道。

至於GO的協程和通道的基礎知識請自行百度。

代碼如下:

package mainimport ("fmt""github.com/zheng-ji/goSnowFlake")func main() {fmt.Println("Hell Go !")iw, err := goSnowFlake.NewIdWorker(1)if err != nil {fmt.Println(err)}cons := map[int64]int{}chncount := 10chs := make([]chan int, chncount)for j := 0; j < chncount; j++ {chs[j] = make(chan int)go func(idx int) {for i := 0; i < 10000; i++ {if id, err := iw.NextId(); err == nil {if _, ok := cons[id]; ok {fmt.Println(idx, "   ", id)}}}chs[idx] <- 1}(j)}for i := 0; i < chncount; i++ {<-chs[i]}}  

 

運行結果如下:

GOROOT=C:\Go #gosetupGOPATH=D:\GO\TestPros;D:\GO\TestPros\src;D:\GO\GOPATH #gosetupC:\Go\bin\go.exe build -i -o D:\GO\TestPros\bin\TestPros.exe D:/GO/TestPros/src/goroutine.go #gosetup"C:\Program Files\JetBrains\GoLand 2018.1.1\bin\runnerw.exe" D:\GO\TestPros\bin\TestPros.exe #gosetupHell Go !Process finished with exit code 0

 

共使用了10個協程,每個協程產生1000個ID,但是通過驗證沒有重複欄位。可能驗證的不夠完整,但是目前尚未找到原因。

GO 協程 通道執行個體以及驗證SnowFlake演算法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.