# 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/q6ioiaa
golang 源碼分析:cayley-4-**
在分析完如何使用 cayley 後,我們總結下使用的時候的步驟: 1,初始化後端存儲,比如 memory、kv、sql 等2,加入四元祖 3,指定起始節點 4,綁定查詢條件 5,使用迭代器獲取結果 如何初始化後端存儲呢?我們分析下它的源碼,比如 memstore 的初始化邏輯位於 imports.go,第一個參數是存儲類型,第二個參數存儲的磁盤路徑,第三個 ⌘ Read more