# 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/wuyoxfq
Go 語言從 0 到 1 實現最簡單的數據庫!**
後臺開發對於數據庫操作是必不可少的事情,瞭解數據庫原理對於平常的工作的內功積累還是很有幫助的,這裏實現一個最簡單的數據庫加深自己對數據庫的理解。一、go 實現數據庫目的瞭解數據是如何在內存和磁盤存儲的 數據是怎麼移動到磁盤 主鍵是如何保持唯一性 索引是如何形成 如何進行全表遍歷 熟悉 Go 語言對內存以及文件操作 二、數據庫選擇 SQLite選擇 SQLite ⌘ Read more