# 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/semctwa
go 語言 runtime-debug 包詳解**
【導讀】本文對 runtime/debug 包內的方法進行了詳細介紹。程序包調試了包含程序在運行時進行調試功能, 就針對 api 進行一一講解1. 強制進行垃圾回收 2. 設置垃圾回收的目標百分比 3. 設置被單個 go 協程調用棧可使用的內存最大值 4. 設置 go 程序可以使用的最大操作系統線程數 5. 設置程序請求運行是隻觸發 panic, 而不崩潰 6. 垃圾 ⌘ Read more