# 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/v3jpcjq
golang 源碼分析:boltdb(2)**
在瞭解完 boltDB 如何使用後,我們開始詳細分析 boltdb 的源碼,我們從創建實例函數 bolt.Open 開始,它的源碼位於 db.go,它的第一個參數是文件名稱,第二個參數是權限信息,第三個參數是創建數據庫實例的可選參數,具體定義如下: // Options represents the options that can be set when opening a d ⌘ Read more