# 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/3sfbjha
一文搞懂 go gc 垃圾回收原理**
什麼是垃圾回收-------我們在程序中定義一個變量,會在內存中開闢相應內存空間進行存儲,當不需要此變量後,需要手動銷燬此對象,並釋放內存。而這種對不再使用的內存資源進行自動回收的功能即爲垃圾回收(Garbage Collection,縮寫爲 GC),是一種自動內存管理機制如何識別垃圾------引用計數算法 (reference counting)引用計數通過在對象上增加自己被引用的次數,被其他 ⌘ Read more