# 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/kikc6gq
Golang 實現健壯的內存型緩存**
本文介紹了緩存的常見使用場景、選型以及注意點,比較有價值。內存型緩存是一種以消費內存爲代價換取應用性能和彈性的方式,同時也推遲了數據的一致性。在使用內存型緩存時需要注意並行更新、錯誤緩存、故障轉移、後臺更新、過期抖動,以及緩存預熱和轉換等問題。由來--緩存是提升性能的最便捷的方式,但緩存不是萬能的,在某些場景下,由於事務或一致性的限制,你無法重複使用某個任務的結果。緩存失效是計算機科學中最常見的兩 ⌘ Read more