# 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/jobfcza
Go 高性能編程技法**
作者:dablelv,騰訊 IEGggG 後臺開發工程師 代碼的穩健、可讀和高效是我們每一個 coder 的共同追求。本文將結合 Go 語言特性,爲書寫效率更高的代碼,從常用數據結構、內存管理和併發,三個方面給出相關建議。話不多說,讓我們一起學習 Go 高性能編程的技法吧。常用數據結構1. 反射雖好,切莫貪杯標準庫 reflect 爲 Go 語言提供了運行時動態獲取對象的類型和值以及動態創建對象 ⌘ Read more