# 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/yyfuphq
輕鬆理解 Go 中的內存逃逸問題**
內存逃逸是什麼在程序中,每個函數塊都會有自己的內存區域用來存自己的局部變量(內存佔用少)、返回地址、返回值之類的數據,這一塊內存區域有特定的結構和尋址方式,尋址起來十分迅速,開銷很少。這一塊內存地址稱爲棧。 棧是線程級別的,大小在創建的時候已經確定,當變量太大的時候,會 "逃逸" 到堆上,這種現象稱爲內存逃逸。 簡單來說,局部變量通過堆分配和回收,就叫內存逃逸。 內存逃逸危害堆是 ⌘ Read more