# 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/3sq4fca
簡單好用的緩存庫 gcache
前言-----開發時,如果你需要對數據進行臨時緩存,按照一定的淘汰策略,那麼 gcache 你一定不要錯過。gcache golang 的緩存庫。它支持可擴展的 Cache,可以選擇 LFU,LRU、ARC 等淘汰算法。特性-----gcache 有很多特性:-------------支持過期淘汰算法 Cache, 比如 LFU, LRU 和 ARC Goroutine 安全 支持事件 ⌘ Read more