# 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/y22heea
在 Rust 中處理高併發:tokio 的深度解析**
在 Rust 中處理高併發:tokio 的深度解析高併發 ,聽起來是不是很厲害的樣子?其實也沒啥,就是讓程序在同一時間幹更多的活兒。Rust 作爲一個追求 “安全” 和“速度”的語言,在高併發領域表現得相當亮眼。而在 Rust 生態中, tokio 是處理異步任務的王者,堪稱多線程場景下的 “工具人”。今天聊聊 tokio,看看它到底好在哪兒,以及怎麼用它寫出又快又穩的代碼。tokio 是個啥?爲 ⌘ Read more