# 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/2bpafrq
MySQL 什麼時候鎖表?如何防止鎖表?**
Mysql 調優的重點目標: 避免鎖表-------------------鎖表會帶來一系列問題,影響數據庫的性能和系統的穩定性。主要是下面的四個問題: 性能問題、死鎖問題、可用性問題、一致性問題1. 鎖錶帶來的性能問題鎖表會阻止其他事務對該表的併發訪問,包括讀操作和寫操作。鎖表會導致嚴重的性能問題:系統吞吐量下降:多個事務需要依次等待鎖的釋放,導致系統整體的吞吐量下降。 用戶體驗差:用戶的 ⌘ Read more