# 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/sxwvaba
9 張圖輕鬆喫透 Go 內存管理單元**
本文基於Go源碼版本1.16、64位Linux平臺、1Page=8KB、本文的內存特指虛擬內存想深入瞭解 Go 語言的內存管理實現,必然繞不開「Go 內存管理單元mspan」,Go 堆內存、棧內存的分配過程都依賴了「內存管理單元mspan」。今天我們就通過幾張圖,層層深入並解開「Go 內存管理單元mspan」的神祕面紗。本文包含的具體概念如下:page的概念 mspan的概念 obje ⌘ Read more