# 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/sabsb2a
分析 golang 程序內存使用情況**
本篇文章簡單介紹一下如何分析 golang 程序的內存使用情況。包含以下幾種方法的介紹:執行前添加系統環境變量GODEBUG='gctrace=1'來跟蹤打印垃圾回收器信息 在代碼中使用 runtime.ReadMemStats 來獲取程序當前內存的使用情況 使用 pprof 工具 一、一個簡單的 demo 代碼---------------package mainimport ⌘ Read more=