# 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/ljwjgtq
聊聊 Go 與 TLS 1-3
除了一些綜述類文章和譯文,我的文章選題多來源於實際工作和學習中遇到的問題。這次我們來聊聊近期遇到一個問題:如何加快基於 TLS 安全通信的海量連接的建連速度?TLS(Transport Layer Security) 傳輸安全層的下面是 TCP 層,我們首先可能會想到的是優化內核有關 TCP 握手的相關參數來快速建立 TCP 連接,比如:net.ipv4.tcpmaxsynbacklog n ⌘ Read more