# 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/3wfg32q
Go 每日一庫之比標準庫更快 hash 算法 xxhash
今天給大家推薦一個 xxhash 庫,該庫是 go 語言實現的 xxHash 算法,比標準庫性能更高,最終生成一個 64 位的整型 hash 值。項目地址:https://github.com/cespare/xxhash  Star:1.5k Used By:52.7k 根據使用量看起來是不是很流行。同時該包也是 xxHash 收錄的實現。 什麼是 xxHashxxHash 是一種速度極快的非 ⌘ Read more