# 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/zf4qazq
Golang 內存模型與分配機制**
0 前言未來兩週,想和大家探討的主題是 Golang 內存管理機制.本系列會分爲兩篇,第一篇談及 Golang 內存模型以及內存分配機制,第二篇會和大家討論 Golang 的垃圾回收機制. 本文是其中第一篇.我個人比較推崇” 基於源碼支撐原理 “的信念,所以本文在闡述原理的基礎上,會伴有大量源碼走讀的過程,作爲理論的支撐論證. 走讀的 Go 源碼版本爲 1.19.內存管理與垃圾回收都屬 Go 語言 ⌘ Read more