# 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/hkptrda
Disruptor 有哪些典型的使用場景?**
大家好,我是君哥。Disruptor 是一款高性能的內存有界隊列,它通過內存預分配、無鎖併發、解決僞共享問題、使用 RingBuffer 取代阻塞隊列等措施來大幅提升隊列性能。但開發者們往往對它的使用場景不太瞭解,到底應該在哪些場景使用呢?今天咱們就來聊一聊 Disruptor 的使用場景。Disruptor 是一個生產 - 消費模式的隊列,這裏我們使用官網的示例,生產者發送一個 long 類型的 ⌘ Read more