# 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/6ybqrba
SpringBoot 整合 Netty 構建百萬級併發服務**
一、Netty 核心架構解析--------------Netty 作爲高性能異步事件驅動框架,其核心設計採用 Reactor 線程模型。理解下面三個核心組件是配置優化的基礎:EventLoopGroup :本質是線程池,處理所有 IO 操作 ChannelPipeline :包含有序的處理器鏈(Handler) ByteBuf :零拷貝技術的 ⌘ Read more