# 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/acgljba
再探 Golang 內聯優化**
轉自: https://juejin.cn/post/7128243201936687117開篇--上一篇文章初探 Golang 內聯 中我們瞭解了內聯的原理,規則。其實 Golang 標準庫裏,以 sync 包爲代表,其實針對鎖的實現,進行了專門的內聯優化。今天我們來實戰驗證一下。感興趣的同學建議先看下 Mutex 和 RWMutex 的源碼,旗幟鮮明地把 fast 和 slow 拆開 ⌘ Read more