# 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/nsli2ya
探索 Rust 中的 Zero-Copy 技術**
探索 Rust 中的 Zero-Copy 技術Rust 的性能經常被人吹得天花亂墜,其中一個重要原因就是它對內存的掌控力。今天聊聊一個很酷的技術 —— Zero-Copy ,翻譯過來就是 “零拷貝”。它聽起來有點像黑魔法,但其實背後很有邏輯。簡單來說,這個技術的目標就是:在處理數據時,儘可能少地複製或移動數據,直接在原始數據上操作,從而節省性能。Rust 的內存安全模型讓這個技術更容易實現,咱們來 ⌘ Read more