主頁 > 知識庫 > Go語言中使用 buffered channel 實現(xiàn)線程安全的 pool

Go語言中使用 buffered channel 實現(xiàn)線程安全的 pool

熱門標簽:旅游廁所如何電子地圖標注 海外照相館地圖標注入駐 智能營銷軟件 經(jīng)常接到推銷電話機器人的電話 滁州自建外呼系統(tǒng) 外呼系統(tǒng)多少錢一年 外呼系統(tǒng)如何接收服務(wù)密碼 工商信用卡外呼系統(tǒng)教程 客服級電銷機器人

概述

我們已經(jīng)知道 Go 語言提供了 sync.Pool,但是做的不怎么好,所以有必要自己來實現(xiàn)一個 pool。

給我看代碼:

復(fù)制代碼 代碼如下:

type Pool struct {
  pool chan *Client
}

// 創(chuàng)建一個新的 pool
func NewPool(max int) *Pool {
  return Pool{
    pool: make(chan *Client, max),
  }
}

// 從 pool 里借一個 Client
func (p *Pool) Borrow() *Client {
  var cl *Client
  select {
  case cl = -p.pool:
  default:
    cl = newClient()
  }
  return cl
}

// 還回去
func (p *Pool) Return(cl *Client) {
  select {
  case p.pool - cl:
  default:
    // let it go, let it go...
  }
}

總結(jié)

現(xiàn)在不要使用 sync.Pool

您可能感興趣的文章:
  • go原生庫的中bytes.Buffer用法
  • C#語言使用gRPC、protobuf(Google Protocol Buffers)實現(xiàn)文件傳輸功能
  • 詳解Django-channels 實現(xiàn)WebSocket實例
  • Django使用Channels實現(xiàn)WebSocket的方法
  • Django Channels 實現(xiàn)點對點實時聊天和消息推送功能
  • 再次探討go實現(xiàn)無限 buffer 的 channel方法

標簽:本溪 湘潭 九江 晉城 深圳 運城 楚雄 喀什

巨人網(wǎng)絡(luò)通訊聲明:本文標題《Go語言中使用 buffered channel 實現(xiàn)線程安全的 pool》,本文關(guān)鍵詞  語,言中,使用,buffered,channel,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Go語言中使用 buffered channel 實現(xiàn)線程安全的 pool》相關(guān)的同類信息!
  • 本頁收集關(guān)于Go語言中使用 buffered channel 實現(xiàn)線程安全的 pool的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章