# 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/zrvc2ua
點贊系統的設計**
隨着社交網絡的蓬勃發展,點贊功能逐漸成爲了一個網站中不可或缺的功能。因爲點贊功能不僅可以讓用戶更直觀地瞭解自己的視頻、文章等內容被多少人認可,而且也提升了用戶互動體驗感。下面我們來聊聊通用的點贊系統設計的方案。1、點贊系統的數據表設計     在設計數據表的時候我們需要知道點贊系統需要完成的基礎功能有哪些,點贊系統通常需要實現以下功能:(1)用戶可以點贊一個視頻、文章、評論等內容(2)用 ⌘ Read more