91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Go語言中的上下文取消操作詳解

發布時間:2020-09-16 07:14:22 來源:腳本之家 閱讀:183 作者:HULK一線技術雜談 欄目:編程語言

前言

許多使用Go的人,都會用到它的上下文庫。大多數使用 context 進行下游操作,比如發出HTTP調用,或者從數據庫獲取數據,或者在協程中執行異步操作。最常見的用法是傳遞可由所有下游操作使用的公共數據。然而,一個不太為人所知,但非常有用的上下文特性是,它能夠在中途取消或停止一個操作。

本篇文章將解釋我們如何利用上下文庫的取消特性,并通過一些模式和最佳實踐來使用取消,使你的程序更快、更健壯。

為什么需要取消?

簡而言之,我們需要取消,以防止我們的系統做不不需要的工作。

考慮HTTP服務器對數據庫的調用的常見情況,并將查詢的數據返回給客戶端:

Go語言中的上下文取消操作詳解

時間圖,如果一切都很完美,就會是這樣的:

Go語言中的上下文取消操作詳解

但是,如果客戶端取消了中間的請求,會發生什么呢?例如,如果客戶端關閉了他們的瀏覽器,這可能會發生。如果沒有取消,應用服務器和數據庫將繼續執行它們的工作,即使工作的結果將被浪費:

Go語言中的上下文取消操作詳解

理想情況下,如果我們知道進程(在本例中是HTTP請求)停止了,我們希望流程的所有下游組件停止工作:

Go語言中的上下文取消操作詳解

1、上下文取消

現在我們知道了為什么需要取消,讓我們來看看如何實現它。因為“取消”的事件與交易或正在執行的操作高度相關,所以它與上下文捆綁在一起是很自然的。

取消的有兩個方面,你可能想要實現:

  • 監聽取消事件
  • 提交取消事件

2、監聽取消事件

上下文類型提供了 Done() 方法,每當上下文收到取消事件時,它都會返回接收空 struct{} 類型的通道。監聽取消事件就像等待 <-ctx.done() 一樣簡單。

例如,讓我們考慮一個HTTP服務器,它需要兩秒鐘來處理一個事件。如果在此之前請求被取消,我們希望立即返回:

func main() {
  // Create an HTTP server that listens on port 8000
 http.ListenAndServe(":8000", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
 ctx := r.Context()
 // This prints to STDOUT to show that processing has started
 fmt.Fprint(os.Stdout, "processing request\n")
 // We use `select` to execute a peice of code depending on which
 // channel receives a message first
 select {
   case <-time.After(2 * time.Second):
 // If we receive a message after 2 seconds
 // that means the request has been processed
 // We then write this as the response
 w.Write([]byte("request processed"))
   case <-ctx.Done():
 // If the request gets cancelled, log it
 // to STDERR
 fmt.Fprint(os.Stderr, "request cancelled\n")
 }
 }))
}

你可以通過運行服務器并在瀏覽器上打開localhost:8000來測試。如果你在2秒前關閉瀏覽器,你應該會看到在終端窗口上打印的“請求取消”。

3、提交取消事件

如果你有一個可以被取消的操作,你將不得不通過上下文發出取消事件。這可以通過 context 包中的 WithCancel 函數來完成,它返回一個上下文對象和一個函數。這個函數沒有參數,也不返回任何東西,當你想要取消上下文時調用。

考慮兩個從屬操作的情況。在這里,“依賴”意味著如果一個失敗了,另一個就沒有意義了。在這種情況下,如果我們在早期就知道其中一個操作失敗了,我們想要取消所有的依賴操作。

func operation1(ctx context.Context) error {
 // Let's assume that this operation failed for some reason
 // We use time.Sleep to simulate a resource intensive operation
 time.Sleep(100 * time.Millisecond)
 return errors.New("failed")
}

func operation2(ctx context.Context) {
 // We use a similar pattern to the HTTP server
 // that we saw in the earlier example
 select {
  case <-time.After(500 * time.Millisecond):
 fmt.Println("done")
  case <-ctx.Done():
 fmt.Println("halted operation2")
 }
}

func main() {
 // Create a new context
 ctx := context.Background()

 // Create a new context, with its cancellation function
 // from the original context
 ctx, cancel := context.WithCancel(ctx)

 // Run two operations: one in a different go routine
 go func() {
 err := operation1(ctx)
 // If this operation returns an error
 // cancel all operations using this context
 if err != nil {
 cancel()
 }
 }()
 // Run operation2 with the same context we use for operation1
 operation2(ctx)
}

4、基于時間取消

任何需要在請求的最大持續時間內維護SLA(服務水平協議)的應用程序都應該使用基于時間的取消。該API幾乎與前面的示例相同,并添加了一些內容:

// The context will be cancelled after 3 seconds
// If it needs to be cancelled earlier, the `cancel` function can
// be used, like before

ctx, cancel := context.WithTimeout(ctx, 3*time.Second)

// The context will be cancelled on 2009-11-10 23:00:00
ctx, cancel := context.WithDeadline(ctx, time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC))

例如,考慮對外部服務進行HTTP API調用。如果服務花費的時間太長,最好是盡早失敗并取消請求:

func main() {
 // Create a new context
 // With a deadline of 100 milliseconds
 ctx := context.Background()
 ctx, _ = context.WithTimeout(ctx, 100*time.Millisecond)
 // Make a request, that will call the google homepage
 req, _ := http.NewRequest(http.MethodGet, "http://google.com", nil)
 // Associate the cancellable context we just created to the request
 req = req.WithContext(ctx)

 // Create a new HTTP client and execute the request
 client := &http.Client{}
 res, err := client.Do(req)

 // If the request failed, log to STDOUT
 if err != nil {
 fmt.Println("Request failed:", err)
 return
 }

 // Print the statuscode if the request succeeds
 fmt.Println("Response received, status code:", res.StatusCode)
}

根據谷歌主頁對你的請求的響應速度,你將收到:

Response received, status code: 200

或者

Request failed: Get http://google.com: context deadline exceeded

你可以使用超時來實現上述兩個結果。

陷阱和警告

盡管Go的上下文取消是一個通用的工具,但是在繼續之前,有一些事情是你應該記住的。其中最重要的一點是, 上下文只能被取消一次 。

如果你想在同一個操作中提出多個錯誤,那么使用上下文取消可能不是最好的選擇。使用取消的最慣用的方法是,當你真正想要取消某些東西時,而不僅僅是通知下游進程,錯誤已經發生了。

你需要記住的另一件事是,相同的上下文實例應該傳遞給所有你可能想要取消的功能和例程。用 WithTimeout 或 WithCancel 來包裝已經可取消的上下文將會導致多種可能性,你的上下文可以被取消,并且應該避免。

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邵阳县| 吴桥县| 信丰县| 桂林市| 遵义县| 三穗县| 龙江县| 格尔木市| 横峰县| 故城县| 湘阴县| 雷山县| 黑龙江省| 沙坪坝区| 佛学| 大连市| 常宁市| 湟源县| 衡水市| 巴林右旗| 景德镇市| 凤凰县| 高要市| 丹江口市| 茂名市| 远安县| 龙海市| 东至县| 肃宁县| 日喀则市| 韶关市| 台州市| 石景山区| 噶尔县| 思南县| 定远县| 治多县| 永城市| 土默特左旗| 墨竹工卡县| 明水县|