# 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/ndnx3ia
Go 語言內存逃逸案例**
01 介紹在「Go 語言逃逸分析」中,我們瞭解到內存分配的相關知識,棧空間分配開銷小,堆空間分配開銷大。Go 語言編譯器可以通過逃逸分析決定內存分配到棧空間或堆空間。但是,分配到棧空間的對象在某些情況中會逃逸到堆空間。我們可以使用 Go 工具鏈查看對象是否發生內存逃逸。爲了提升 Go 應用程序的性能,我們應該避免 Go 應用程序中出現內存逃逸的現象,本文我們介紹 Go 語言內存逃逸的幾種典型案例。 ⌘ Read more