# 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/fakri2a
碼住!Golang 併發安全與引用傳遞總結**
因爲現在服務上雲的趨勢,業務代碼都紛紛轉向 golang 的技術棧。在遷移或使用的過程中,由於對 golang 特性的生疏經常會遇到一些問題,本文總結了 golang 併發安全和參數引用傳值時的一些知識。一、Map 類型併發讀寫引發 Fatal Error先看一個在 Go 中關於 Map 類型併發讀寫的經典例子:var testMap = map[string]string{}func main ⌘ Read more
=