# 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/5d2kzmq
通過重構 Go 項目來介紹基本的 CQRS
您很可能接觸過其中某種項目:有一個難以理解和更改的、無法維護的巨大數據模型 並行開發新的功能時受到重重限制 項目很難進行優化擴展 但通常往往是三件壞事一起發生的,有這些問題的服務並不少見。要解決這些問題,首先想到的是什麼?讓我們把它拆分成更多的微服務!遺憾的是,如果不進行適當的研究和規劃,盲目重構後的情況可能會比之前更糟:業務邏輯和流程可能變得更加難以理解 \\-\\- 複雜的邏輯如果集 ⌘ Read more