# 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/ugvjiaq
Go 適合 IO 密集型?並不準確!**
Go 程序適合什麼樣的場景?你想過這個問題嗎?Go 程序到底是哪種場景最適合。可能你已經聽說過答案了:IO 密集型的場景。什麼是 CPU 密集型、IO 密集型?計算機程序場景會分成 cpu 密集型 和 IO 密集型。CPU 密集型說的是一直在運算 CPU 指令,這種常見於算法運行嘍。IO 密集型說的是經常下發 IO ,比如網卡,磁盤,或者其他外設。Go 適合 IO 密集型,並不準確?你肯定記住了答 ⌘ Read more