# 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/qsxf6eq
CQRS:分離職責,讓讀寫更高效**
在現代應用程序中,讀寫操作的需求往往是截然不同的。爲了應對這些差異,CQRS (Command Query Responsibility Segregation,命令查詢職責分離), 逐漸成爲一種廣泛使用的架構模式。它通過將讀操作和寫操作進行分離,解決了傳統架構下的一些常見問題,尤其在性能和可擴展性方面優勢顯著。什麼是 CQRS?---------CQRS 的核心思想是:將處理 “命令”(Comm ⌘ Read more