greenev —— Python 非同步網路服務架構

來源:互聯網
上載者:User

標籤:

greenev是一個基於greenlet協程,事件驅動,非阻塞socket模型的Python網路服務架構,它使得可以編寫同步的代碼,卻得到非同步執行的優點。 

本項目受到gevent, openresty, alilua, skynet, clowwindy/ssloop的啟發,在此表示感謝。 

  • reactor模式採用基於epoll, kqueue, poll, select的IO複用機制
  • 基於底層的reactor完成上層greenlet協程的調度
  • 在CentOS6.5, Ubuntu12.04, FreeBSD10.1, Windows7上測試通過
  • 只需調用g.parent.switch掛起當前的協程,而無需管理其中的細節


測試前請修改如下系統參數(CentOS): 

Cmd代碼 
  1. net.ipv4.tcp_syncookies = 1   
  2. net.ipv4.tcp_tw_reuse = 1   
  3. net.ipv4.tcp_tw_recycle = 1   
  4. net.ipv4.tcp_fin_timeout = 30   
  5. net.ipv4.tcp_keepalive_time = 1200   
  6. net.ipv4.ip_local_port_range = 1024 65000   
  7. net.ipv4.tcp_max_syn_backlog = 8192   
  8. fs.file-max=65535   
  9. net.ipv4.tcp_max_tw_buckets = 20000   
  10. net.nf_conntrack_max = 65000   
  11. net.netfilter.nf_conntrack_tcp_timeout_established = 1200  



託管地址:https://github.com/Hevienz/greenev

greenev —— Python 非同步網路服務架構

相關文章

聯繫我們

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