# 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/uzu6cpa
一文搞懂 Go 內聯優化**
移動互聯網時代,直面 C 端用戶的業務系統規模一般都很龐大,系統消耗的機器資源也很可觀,系統使用的 CPU 核數、內存都是在消耗公司的真金白銀。在服務水平不下降的前提下儘量降低單服務實例的資源消耗,即我們俗稱的 “少喫草多產奶”,一直是各個公司經營人員的目標,有些公司每降低 1% 的 CPU 核數使用,每年都能節省幾十萬的開銷。在編程語言選擇不變的情況下,要想持續降低服務資源消耗,一方面要靠開發人 ⌘ Read more