# 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/ahen7ca
深入解析 go channel 各狀態下的操作結果**
大家好,我是漁夫子。channel 是 golang 中獨有的特性,也是面試中經常被問到的。相信大家都看到過下面這張圖,對於不同狀態下通道,在操作時會有什麼結果。這張圖總結的非常好。但我們不能死記硬背這些結果。要了解其底層的基本原理,就能理解這些結果是怎麼來的。我們分三部分來講。先是 channel 的基礎使用,基礎使用提現了 channel 有哪些特性。再引出 channel 的底層數據結構。底 ⌘ Read more