# 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/oh3qioa
千萬級數據的全表 update 正確姿勢**
前言--有些時候在進行一些業務迭代時需要我們對 Mysql 表中數據進行全表 update,如果是在數據量比較小的情況下(萬級別),可以直接執行 sql 語句,但是如果數據量達到一個量級後,就會出現一些問題,比如主從架構部署的 Mysql,主從同步需要需要 binlog 來完成,而 binlog 格式如下,其中使用 statement 和 row 格式的主從同步之間 binlog 在 update ⌘ Read more