# 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/odpwjtq
Golang 垃圾回收原理分析**
0 前言近期在和大家一起探討 Golang 內存管理機制.本系列內容分爲兩部分,第一部分談及 Golang 內存模型以及內存分配機制,第二部分和大家討論 Golang 的垃圾回收機制.本文是其中第二部分. 由於 GC 模塊內容篇幅不小,且筆者近期工作繁忙,因此這部分不得不拆爲上下兩篇.本文是上篇,在理論層面對 Golang GC 展開介紹,下篇將於下週發出,屆時會基於源碼走讀的方式對理論進行補充論 ⌘ Read more