# 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/tijjlva
GO 語言 JSON 與 Cache 庫 調研與選型**
JSON----基本上從以下兩種角度進行分析性能方面,如是否使用反射;是否支持 Unmarshal 到 map 或 struct,未涉及靈活性與擴展性方面,下面報告中只考慮最簡單的反序列化,不會提及每個庫的靈活性,如提供的一些定製化抽取的 API;相關庫GO 1.14 標準庫 JSON 大量使用反射獲取值,首先 go 的反射本身性能較差,其次頻繁分配對象,也會帶來內存分配和 GC 的開銷;val ⌘ Read more