# 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/daixvkq
日誌系統的架構設計方案**
日誌對於我們開發人員是非常重要的,當我們的系統會出現異常或者業務出現錯誤的時候,我們都是利用日誌來定位問題,問題定位到之後就可以有針對性的來解決這個問題,下面我們來聊聊日誌系統架構的常見設計方案。1、單體應用下的日誌系統設計     在互聯網初期的業務系統都是單體架構部署的,所以針對這種架構下的日誌一般都是採用文件的形式存儲日誌,如下所示:     用戶在使用系統的過程中,系統中採用 ⌘ Read more