# 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/sdfforq
圖解 TCP 收發包需要注意的內核參數**
今天我們站在收發包視角來看一下,爲了避免丟包,需要注意的內核參數吧。 背景--    TCP 收包和發包的過程是網絡應用中容易出現問題的地方。收包是指數據到達網卡並被應用程序開始處理的過程;發包則是應用程序調用發包函數到數據包從網卡發出的過程。常見的問題包括:網卡中斷過多,佔用大量 CPU,影響業務性能; 應用程序調用 write() 或 send() 發送數據包卻未成功; ⌘ Read more