# 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/lb4koqq
Golang 高性能編程實踐**
作者:coly go 中高性能編程是一個經久不衰的話題,本文嘗試從實踐及源碼層面對 go 的高性能編程進行解析。1. 爲什麼要進行性能優化服務上線前,爲什麼要進行壓測和性能的優化?一個例子,content-service 在壓測的時候發現過一個問題: 舊邏輯爲了簡化編碼,在進行協議轉換前,會對某些字段做一個 DeepCopy,因爲轉換過程需要原始數據,但我們完全可以通過一些處理邏輯的調整,比如調 ⌘ Read more