# 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/cq5vlza
如何在測試中發現 goroutine 泄漏**
前言\\-\\- 哈嘍,大家好,我是asong; 衆所周知,gorourtine的設計是Go語言併發實現的核心組成部分,易上手,但是也會遭遇各種疑難雜症,其中goroutine泄漏就是重症之一,其出現往往需要排查很久,有人說可以使用pprof來排查,雖然其可以達到目的,但是這些性能分析工具往往是在出現問題後藉助其輔助排查使用的,有沒有一款可以防患於未然的工具嗎?當然有,goleak他來了,其由 U ⌘ Read more