# 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/abtfhxa
Linux epoll 完全圖解,徹底搞懂 epoll 機制**
1\. 從內核看 epoll 機制-------------------- select 和 poll 雖然能夠實現 IO 複用的功能,但是由於設計的缺陷,select 和 poll 無法處理海量的網絡連接,並且隨着網絡連接數量的增加,select 和 poll 效率越來越低。 此時急需一種更爲高效的 IO 複用機制解決海量併發請求問題,epoll 機制就是爲了解決該問題而誕生的。要理解 ⌘ Read more