# 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/xitv5na
Golang GC 從原理到優化**
這篇文章與筆者之前所寫幾篇不同,是一篇綜述型的文章,將從 GC 理論、在 Golang 中的應用、以及如何去做優化,這三個角度逐次進行闡述,文章中對於一些技術點會引用到多篇文章,希望讀者也都能進行閱讀,這有助於更全面的瞭解 Golang GC。同時,特別鳴謝 @王德宇 同學對這篇文章的斧正,以及撰寫過程中的諸多幫助與解答。理論GC 和內存分配方式是強相關的兩個技術,因此在分析兩者的設計原理之時,要 ⌘ Read more