# 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/5za3axa
系統設計:設計 URL 短鏈接工具**
這是一個系統設計問題,要求從頭開始設計一個類似於 TinyURL 或 Bitly 的 URL 短鏈接工具。我們將涵蓋從設計需求、架構和組件設計到高性能擴展和安全最佳實踐的各個方面。定義範圍:功能性和非功能性需求首先,我們需要定義該系統的功能性和非功能性需求。我們有兩個功能性需求:給定一個長 URL 時,我們必須創建一個短 URL2. 給定一個短 URL 時,我們必須將用戶重定向到長 URL。該服務 ⌘ Read more