# 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/ctizf5q
一文帶你徹底弄懂線程池設計機制**
01、背景介紹-------雖然 Java 對線程的創建、中斷、等待、通知、銷燬、同步等功能提供了很多的支持,但是從操作系統角度來說,頻繁的創建線程和銷燬線程,其實是需要大量的時間和資源的。例如,當有多個任務同時需要處理的時候,一個任務對應一個線程來執行,以此來提升任務的執行效率,模型圖如下:如果任務數非常少,這種模式倒問題不大,但是如果任務數非常的多,可能就會存在很大的問題:1. 線程數不可控: ⌘ Read more