# 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/h6d5z3a
白話 Go 內存模型 - Happen-Before
Go 內存模型明確指出,一個 goroutine 如何才能觀察到其他 goroutine 對同一變量的寫操作。 當多個 goroutine 併發同時存取同一個數據時必須把併發的存取操作序列化。在 Go 中保證讀寫的序列化可以通過 channel 通信或者其他同步原語(例如 sync 包中的互斥鎖、讀寫鎖和 sync/atomic 中的原子操作)。Happens Before在單 goroutin ⌘ Read more