# 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/gss2uoa
面試官:哥們 Go 語言互斥鎖瞭解到什麼程度了?**
前言\\-\\- 哈嘍,大家好,我是asong。 當提到併發編程、多線程編程時,都會在第一時間想到鎖,鎖是併發編程中的同步原語,他可以保證多線程在訪問同一片內存時不會出現競爭來保證併發安全;在Go語言中更推崇由channel通過通信的方式實現共享內存,這個設計點與許多主流編程語言不一致,但是Go語言也在sync包中提供了互斥鎖、讀寫鎖,畢竟channel也不能滿足所有場景,互斥鎖、讀寫鎖的使用與我 ⌘ Read more