# 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/2tl5oea
Golang Profiling: 關於 pprof
golang 自身提供的工具中包括性能分析工具 - pprof。這個工具被實現在兩個位置:runtime/pprof:採集器,負責採集應用程序的運行數據供給 pprof 可視化工具 net/http/pprof:通過一個 HTTP Server 將 prof 數據進行可視化分析。 golang 內建提供了多種性能收集器,它們負責收集這些性能數據:Goroutine: stack tra ⌘ Read more