ngx_lua與go高並發效能對比

來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。

Nginx在處理高並發能力上非常出色,而go作為新時代互連網語言,在設計之初就為實現高並發。ngx_lua由Nginx來處理網路事件,並使用協程來實現非阻塞,從而實現高並發。 go語言層級提供非阻塞的api,同樣使用協程來提供高並發處理。

 

我們來測試對比一下兩者的效能。

ngx_lua:Tengine/1.4.3+luajit+ngx_luago:go1.0.3

分別實現512位元組的內容的輸出,對比在不同並發下的qps。

測試機器:

16core Intel(R) Xeon(R) CPU E5520  @ 2.27GHz  Linux localhost 2.6.18-164.el5 #1 SMP Tue Aug 18 15:51:48 EDT 2009 x86_64 x86_64 x86_64 GNU/Linux

使用ab進行測試,測試結果如下:

從結果中,可以看出短串連時,兩者qps相差不大,而長串連時,兩者相差較大。go的cpu佔用比ngx_lua要高不少。另外,go在並發數增加的情況下,效能依然出色。

相關測試代碼。

lua代碼:

ngx.print("aaaaa...512...aaa")

go 代碼:

package mainimport (    "net/http"    "log"    "fmt"    "runtime")func handler512(w http.ResponseWriter, r *http.Request) {    w.Header().Set("Connection", "keep-alive")    a := []byte("aaaaa...512...aaa")    w.Header().Set("Content-Length", fmt.Sprintf("%d", len(a)))    w.Write(a)}func main() {    runtime.GOMAXPROCS(runtime.NumCPU())    http.HandleFunc("/512b", handler512)    log.Fatal(http.ListenAndServe(":8080", nil))}

 

link: http://os.51cto.com/art/201307/403474.htm

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.