# 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/ujegv5a
還咋優化?我是說 Go 程序**
Go 語言是一個極容易上手的語言,而且 Go 程序的優化套路基本上被大家莫得清清楚楚的,如果你有心,可以在互聯網上搜出很多 Go 程序優化的技巧,有些文章可能只介紹了幾個優化點,有些文章從 CPU 的架構到 Slice 預分配,再到通過 pprof 找性能的瓶頸點等等全面介紹 Go 程序的優化,所以說可見的手段基本上被大家摸得門清,最近老貘出了一道題,如下所示,可以看到大家對 Go 語言的優化已經 ⌘ Read more