# 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/nvpxr7a
進城內優雅管理多個服務**
前言--在 go-zero 社區裏,經常會有同學問,把 API gateway 和 RPC service 放在同一個進程內可不可以?怎麼弄?有時也會有同學把對外服務和消費隊列放在一個進程內。咱們姑且不說此種用法合理與否,因爲各個公司的業務場景和開發模式的差異,我們就只來看看此類問題怎麼解比較優雅。問題舉例----我們用兩個 HTTP 服務來舉例,我們有這樣兩個服務,需要啓動在一個進程內的兩個不同 ⌘ Read more