# 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/7ke5q5a
Go 項目實現日誌按時間及文件大小切割並壓縮**
關於日誌的一些問題:單個文件過大會影響寫入效率,所以會做拆分,但是到多大拆分? 最多保留幾個日誌文件?最多保留多少天,要不要做壓縮處理?一般都使用 lumberjack[1] 這個庫完成上述這些操作 lumberjack----------  //info文件writeSyncer infoFileWriteSyncer := zapcore.AddSync(&lumberjack.Log ⌘ Read more
=