# 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/inhloqq
電商系統的分佈式事務調優**
如今,大部分公司的服務基本都實現了微服務化,首先是業務需求,爲了解耦業務;其次是爲了減少業務與業務之間的相互影響。    電商系統亦是如此,大部分公司的電商系統都是分爲了不同服務模塊,例如商品模塊、訂單模塊、庫存模塊等等。事實上,分解服務是一把雙刃劍,可以帶來一些開發、性能以及運維上的優勢,但同時也會增加業務開發的邏輯複雜度。其中最爲突出的就是分佈式事務了。     通常,存在分佈式事務 ⌘ Read more