# 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/wn22lhq
表設計的 18 條軍規**
前言--對於後端開發同學來說,訪問數據庫,是代碼中必不可少的一個環節。系統中收集到用戶的核心數據,爲了安全性,我們一般會存儲到數據庫,比如:mysql,oracle 等。後端開發的日常工作,需要不斷的建庫和建表,來滿足業務需求。通常情況下,建庫的頻率比建表要低很多,所以,我們這篇文章主要討論建表相關的內容。如果我們在建表的時候不注意細節,等後面系統上線之後,表的維護成本變得非常高,而且很容易踩坑。 ⌘ Read more