# 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/34qbniq
Rust 的併發模型 vs Go 的併發模型:Stackless 協程 vs Stackfull 協程**
雖然 Rust 和 Go 都是從上一代編程語言的錯誤中吸取教訓的現代編程語言,但它們以完全不同的方式管理併發,這對性能和開發人員體驗有巨大的影響。但首先,我們爲什麼需要併發?今天,大多數程序與需要一定時間才能返回響應的資源進行交互:例如網絡或磁盤。如果我們在等待網絡響應的同時完全阻塞程序的執行,這將是對硬件的一種相當低效的使用!這就是爲什麼 Go 和 Rust 在等待 I/O(輸入 / 輸出) 時 ⌘ Read more