# 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/7wgkxaa
容器中如何正確配置 GOMAXPROCS ?**
前言--前兩天看了一篇文章 GOMAXPROCS 與容器的相處之道 [1],裏面提到了 Go 標準庫中 runtime.GOMAXPROCS 方法的問題: 因爲系統調用 schedgetaffinity 並不感知它對進程的限制,所以運行在 Kubernetes 中的 Go 程序的運行時始終會認爲自己可以使用宿主機上的所有 CPU,進而創建了相同數量的 P (處理器), 而當 GOMAXPROCS ⌘ Read more