# 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/mtzoo5q
Go 最細節篇|pprof 統計的內存總是偏小?**
Go 的內存泄漏內存泄漏通常在 c/c++ 等語言常見,手工管理內存對程序猿的編程能力有較高要求。最常見的就是分配和釋放沒有配對使用。 Go 是一門帶 Gc 的語言,內存分配位置由編譯器推斷是在棧還是堆上,內存分配完全由 Go 本身把控,程序猿無法介入。程序猿在前端觸發分配,後端的 runtime 的 GC 任務則不斷的回收內存,從而達到一個平衡。理論上是不存在常規意義的內存泄漏的。但在程序中, ⌘ Read more