# 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/agltwra
ES 的 4 種分頁方式,如何選擇?**
在 Elasticsearch 中,有 4 種常見的分頁方法,這篇文章,我們將分析每種方法的優缺點以及我們該如何選擇。使用 from 和 size使用 from 和 size是最常用的分頁方式,通過設置 from 參數指定從結果集的哪個位置開始,size 參數指定返回多少條記錄。使用語法如下:GET /index/search{  "from": 10,  "size": 10,  "query" ⌘ Read more