# 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/zap4aga
golang 源碼分析:cayley-1-**
https://github.com/cayleygraph/cayley 是 go 實現的一個圖數據庫,它支持多種後端存儲,包括 mysql,boltdb 甚至是 elasticsearch。下面我們先學習下如何使用它。        首先下載源碼並下載依賴的靜態文件,然後編譯。 clone projectgit clone https://github.com/cayleygRead more