# 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/bepgz4q
解釋有狀態與無狀態架構設計**
什麼是有狀態(Stateful)?想象一下,你去一家忙碌的餐廳喫飯,同一個服務員從頭到尾爲你服務。他會記住你的點單以及所有需求。但是問題來了:如果這個服務員中途休息或換班了,接替他的服務員就不知道你之前點了什麼。這意味着你必須重新開始,和新服務員說明一切。這和有狀態服務器的工作方式很相似。有狀態服務器會記住你的會話信息,比如登錄數據、偏好設置等。但問題是,如果你的下一次請求被另一個服務器處理,那麼 ⌘ Read more