# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/5q56i5a
雲原生系列 Go 語言篇 - 併發**
併發是一個計算機科學用語,將一個進程分割成獨立組件並指明這些組件如何安全共享數據。大部分語言通過庫提供併發,使用的是嘗試通過獲取鎖操作執行系統級共享數據的線程。Go 獨樹一幟。它的主要併發模塊,很多認認爲是 Go 的最著名的特性,基於 CSP(通訊順序過程)。它依據快速排序算法的發明人 Tony Hoare 在 1978 年的論文所描述的併發風格。根據 CSP 實現的模式和標準併發同樣強大,但容易 ⌘ Read more