# 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/exphrba
Go 語言的垃圾回收**
Go [ = v1.5] 的新垃圾回收器是一種併發的三色標記清除回收器,這個想法最早是由 Dijkstra 在 1978 [1] 年提出的。Go 團隊一直在密切關注並改進 Go 語言的垃圾回收器。從每 50 毫秒一次的 10 毫秒 STW 暫停到每次 GC 有兩個 500μs 的 STW 暫停,整個改進過程可以在這裏 [2] 找到。長期從事 Go 開發,我一直對其性能感到畏懼,因此我決定深入 ⌘ Read more