# 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/tfanf5a
好物分享:快速找到 Goroutine 泄露的地方**
大家好,我是煎魚。Go 語言能夠廣受大家喜歡,其中一個原因就是他的協程做的非常非常簡單,初學的入門者都可以使用。平時只需 go 關鍵字一下,成千上萬個 goroutines 就出現了:for ...  go func(){}起協程就跟下餃子的。這時就個大問題,因爲協程用起來簡單,出問題出起來也很快。也就是常常會出現 goroutine 泄露,查起來很費勁。goleak------今天給大家推薦一個 ⌘ Read more