# 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/avgmilq
GO 語言併發編程入門:Goroutine、Channel、Context、併發安全、GMP 調度模型**
作者:Pistachiout https://juejin.cn/post/72659397987947643221.GO 併發介紹---------併發:多線程程序在一個核的 cpu 上運行。並行:多線程程序在多個核的 cpu 上運行。由上可知併發不是並行,並行是直接利用多核實現多線程的運行,併發則主要由切換時間片來實現” 同時” 運行,go 可以設置使用核數,以發揮多核計算機的能力。 ⌘ Read more