# 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/pfy2joq
批量讀寫網絡包- 只爲更高性能**
雖然網絡協議棧提供了豐富的功能,讓我們可以方便的實現網絡的數據交流,但是有時候我們對協議棧的性能還是不是那麼滿意的,前幾篇文章我也介紹了通過 XDP 等技術高效處理網絡數據的方式,但是畢竟 XDP 還沒有那麼廣泛的應用,使用起來也還不是那麼簡單,如果我們通過編程語言提供的標準庫來實現數據的讀寫,還怎麼能提高性能呢?今天就介紹一種方式,批量的讀寫數據包。直觀上看,我們也能理解批收發網絡包比單個的收發 ⌘ Read more