# 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/ohjbota
Rust 日誌高級實戰: 使用 rust-lang-log 與 slog 構建高性能分佈式日誌系統**
引言--在前面的教程中, 我們介紹瞭如何使用rust-lang/log與envlogger和log4rs實現基本和高級的日誌功能。本文將進一步探討如何使用slog庫構建高性能的分佈式日誌系統, 適用於大規模生產環境。使用slog庫------------slog是一個結構化的、可組合的日誌庫, 專爲高性能和靈活性而設計。它支持各種輸出目標 (如控制檯、文件、網絡) 和過濾器, 並提供了豐富的功能, ⌘ Read more