# 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/kijrqua
微服務架構下的 9 大經典隔離策略**
01前言單體應用中,一個組件的故障往往會拖垮整個系統。而微服務架構的一個好處便在於更好的容錯性——微服務之間可以實現更好的故障隔離,單個服務內的內存泄露等故障不容易影響其他服務。但微服務架構由於服務數變多也帶來了複雜度的問題,由此引來了經典的服務治理問題,這也是許多程序員走上架構師方向的必由之路。微服務中的隔離策略,便是其中的關鍵,本文將詳解 9 大隔離策略的具體做法,爲你的系統可用性添磚加瓦。 ⌘ Read more