# 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/os2wzla
MySQL 8-0 主從複製原理分析與實戰**
複製(Replication)什麼是複製----- 官網:https://dev.mysql.com/doc/refman/8.0/en/replication.htmlMySQL Replication 是官方提供的主從同步方案,也是用的最廣的同步方案。Replication(複製) 使來自一個 MySQL 數據庫服務器(稱爲源(Source))的數據能夠複製到一個或多個 MySQL 服務器( ⌘ Read more